Skip to content

Instantly share code, notes, and snippets.

@chrisvfritz
Last active January 20, 2021 15:41
Show Gist options
  • Save chrisvfritz/279c36ab6e2301e8a35526be028d8a32 to your computer and use it in GitHub Desktop.
Save chrisvfritz/279c36ab6e2301e8a35526be028d8a32 to your computer and use it in GitHub Desktop.
Base Blog HTML & CSS
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Friends List</title>
<link href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<link href="style.css" rel="stylesheet">
</head>
<body>
<div class="container">
<header>
<h1>Friends List</h1>
<p class="tagline">All your friends, sorted by city</p>
</header>
<section>
<h2>
East Lansing
<span class="city-description">home of the Spartans</span>
</h2>
<img src="https://i.imgur.com/76MJ9Wd.png" alt="Profile pic">
<img src="https://i.imgur.com/76MJ9Wd.png" alt="Profile pic">
<img src="https://i.imgur.com/76MJ9Wd.png" alt="Profile pic">
<img src="https://i.imgur.com/76MJ9Wd.png" alt="Profile pic">
<img src="https://i.imgur.com/76MJ9Wd.png" alt="Profile pic">
<img src="https://i.imgur.com/76MJ9Wd.png" alt="Profile pic">
<img src="https://i.imgur.com/76MJ9Wd.png" alt="Profile pic">
<img src="https://i.imgur.com/76MJ9Wd.png" alt="Profile pic">
<img src="https://i.imgur.com/76MJ9Wd.png" alt="Profile pic">
<img src="https://i.imgur.com/76MJ9Wd.png" alt="Profile pic">
<img src="https://i.imgur.com/76MJ9Wd.png" alt="Profile pic">
<img src="https://i.imgur.com/76MJ9Wd.png" alt="Profile pic">
<img src="https://i.imgur.com/76MJ9Wd.png" alt="Profile pic">
<img src="https://i.imgur.com/76MJ9Wd.png" alt="Profile pic">
<img src="https://i.imgur.com/76MJ9Wd.png" alt="Profile pic">
</section>
<section>
<h2>
Chicago
<span class="city-description">the windy city</span>
</h2>
<img src="https://i.imgur.com/76MJ9Wd.png" alt="Profile pic">
<img src="https://i.imgur.com/76MJ9Wd.png" alt="Profile pic">
<img src="https://i.imgur.com/76MJ9Wd.png" alt="Profile pic">
<img src="https://i.imgur.com/76MJ9Wd.png" alt="Profile pic">
<img src="https://i.imgur.com/76MJ9Wd.png" alt="Profile pic">
<img src="https://i.imgur.com/76MJ9Wd.png" alt="Profile pic">
<img src="https://i.imgur.com/76MJ9Wd.png" alt="Profile pic">
<img src="https://i.imgur.com/76MJ9Wd.png" alt="Profile pic">
<img src="https://i.imgur.com/76MJ9Wd.png" alt="Profile pic">
<img src="https://i.imgur.com/76MJ9Wd.png" alt="Profile pic">
<img src="https://i.imgur.com/76MJ9Wd.png" alt="Profile pic">
<img src="https://i.imgur.com/76MJ9Wd.png" alt="Profile pic">
</section>
</div>
</body>
</html>
.container {
margin: 0 auto;
max-width: 500px;
}
h1, .tagline {
text-align: center;
}
body {
font-family: 'Open Sans', Arial, sans-serif;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment