Skip to content

Instantly share code, notes, and snippets.

@kristynrb
Created November 9, 2016 02:40
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 kristynrb/8e82f0f263b5deda59f59e5055f07ae4 to your computer and use it in GitHub Desktop.
Save kristynrb/8e82f0f263b5deda59f59e5055f07ae4 to your computer and use it in GitHub Desktop.
w02d02_homework_solutions - Supply - HTML file
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Supply</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="container">
<div id="sidebar">
<img src="img/logo.png" alt="supply logo">
</div>
<div id="content">
<div id="row1">
<div class="one">
<img src="img/main_boots.jpg" alt="thousand mile boot" />
</div>
</div>
<div id="row2">
<div class="three">
<img src="img/cat-mens.jpg" alt="mens" />
</div>
<div class="three">
<img src="img/cat-women.jpg" alt="womens" />
</div>
<div class="three right">
<img src="img/cat-lifestyle.jpg" alt="lifestyle" />
</div>
</div>
<div id="row3">
<div class="two">
<img src="img/home-about.jpg" alt="about" />
</div>
<div class="two right">
<img src="img/home-blog.jpg" alt="news & updates" />
</div>
</div>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment