Created
March 16, 2016 01:31
-
-
Save jacobmischka/4a49263fc1a718559fa4 to your computer and use it in GitHub Desktop.
index.html
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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