forked from web-dev-open/pizza
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (25 loc) · 646 Bytes
/
Copy pathindex.html
File metadata and controls
35 lines (25 loc) · 646 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!DOCTYPE html>
<html>
<head>
<title>My Favorite Pizza</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css" />
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<!-- WEB PAGE CONTENT HERE -->
<div class="pageContainer">
<div class="imageContainer">
<img src="images/pizza.jpg" alt="Pizza with pepperoni and cheese." />
</div>
<div class="textContainer">
<h1>Pizza!</h1>
<p>My Favorite Toppings: </p>
<ul>
<li>Pepperoni</li>
<li>Mozzarella Cheese</li>
<li>Mushrooms</li>
</ul>
</div>
</div>
</body>
</html>