Skip to content

Instantly share code, notes, and snippets.

@shkurkin
Created December 23, 2013 21:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shkurkin/8105123 to your computer and use it in GitHub Desktop.
Save shkurkin/8105123 to your computer and use it in GitHub Desktop.
HTML/CSS for Self Assessment ex. 10
<!DOCTYPE html>
<html>
<head>
<title>Basic HTML</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="wrapper">
<h1 class="sans">This is I</h1>
<div class="center"><img src="img/me.jpg"></div>
<h1>Eli Shkurkin</h1>
</div>
</body>
</html>
img {
width: 100%;
}
h1 {
text-align: center;
}
#wrapper {
margin-left: auto;
margin-right: auto;
margin-top: 50px;
background: beige;
width: 500px;
border: 3px solid brown;
}
.center {
margin-left: auto;
margin-right: auto;
width: 70%;
}
.sans {
font-family: sans-serif;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment