Skip to content

Instantly share code, notes, and snippets.

@jacobmischka
Created March 16, 2016 01:31
Show Gist options
  • Save jacobmischka/4a49263fc1a718559fa4 to your computer and use it in GitHub Desktop.
Save jacobmischka/4a49263fc1a718559fa4 to your computer and use it in GitHub Desktop.
index.html
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Homepage</title>
<link href="styles.css" rel="stylesheet" type="text/css">
<!--The following script tag downloads a font from the Adobe Edge Web Fonts server for use within the web page. We recommend that you do not modify it.-->
<script>
var __adobewebfontsappname__ = "dreamweaver"
</script>
<script src="http://use.edgefonts.net/chunk:n4:default.js" type="text/javascript"></script>
</head>
<body>
<div class="container">
<div class="image-row">
<img src="images/pizzalogo.jpg" alt="" />
<img src="images/deli.jpg" alt="" />
<a href="pizza.html"><img src="images/pizza.jpg" alt="" /></a>
</div>
<div class="image-row">
<img src="images/slicedpizza.jpg" alt="" />
<a href="order.html"><img src="images/makingpizza.jpg" alt="" /></a>
<img src="images/pasta.jpg" alt="" />
</div>
<div class="image-row">
<img src="images/panini.jpg" alt="" />
<img src="images/bottompizza.jpg" alt="" />
<a href="specials.html"><img src="images/carrypizza.jpg" alt="" /></a>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment