Skip to content

Instantly share code, notes, and snippets.

@minhchu
Created September 14, 2021 03:21
Show Gist options
  • Save minhchu/81fcc04929bc80f697e06e4372c9e7aa to your computer and use it in GitHub Desktop.
Save minhchu/81fcc04929bc80f697e06e4372c9e7aa to your computer and use it in GitHub Desktop.
HTML + CSS - Homework 1
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Minh's Website</title>
<style type="text/css">
.avatar {
width: 128px;
height: 128px;
}
.orange-background {
}
</style>
</head>
<body>
<div>
<div>
<img class="avatar" src="https://www.svgrepo.com/show/65453/avatar.svg">
<h1>I'm Minh</h1>
<p>Text</p>
</div>
<div class="orange-background">
<h1>Developer</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
<div>
icon
</div>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment