-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
137 lines (121 loc) · 4.13 KB
/
Copy pathindex.html
File metadata and controls
137 lines (121 loc) · 4.13 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Italian Joy | Mobile First</title>
<link rel="stylesheet" href="css/style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<header id="pageTop" class="flex container">
<div class="logo">
<img src="images/logo.png" alt="Italian Joy Logo"/>
</div>
<nav>
<input type="checkbox" id="nav-button">
<label for="nav-button">☰</label>
<ul>
<li><a href="#">Home |</a></li>
<li><a href="#">Menu |</a></li>
<li><a href="#">Reservations |</a></li>
<li><a href="#">Reviews |</a></li>
<li><a href="#">About Us |</a></li>
<li><a href="#">The Blog |</a></li>
<li><a href="#">Contact Us |</a></li>
</ul>
</nav>
<nav class="social flex">
<ul class="flex">
<li><a href="#"><img src="images/yepIcon.png" alt="Yelp Logo"/></a></li>
<li><a href="#"><img src="images/twitterIcon.png" alt="Twitter logo" /></a></li>
<li><a href="#"><img src="images/fbIcon.png"/></a></li>
</ul>
</nav>
</header>
<!--hero section-->
<section id="hero">
<div class="container">
<h1>All the Pasta
<br>You Care To Eat!</h1>
<h6>Starting from</h6>
<h1><sup>$</sup>8<sup>.99</sup></h1>
<a href="#">View the Menu</a>
</div>
</section>
<!--icon section-->
<section id="icons" class="container flex">
<div class="icon">
<img src="images/pizzaicon.jpg" alt="pizza icon">
<h2>the finest ingredients</h2>
Italian Joy Restaurant is a place that takes pride in the fresh ingredients that make up our tasty dishes.<br>
<a href="#">Learn More</a>
</div>
<div class="icon">
<img src="images/deliveryIcon.png" alt="Vespa Icon">
<h2>the quickest delivery</h2>
Italian Joy Restaurant is a place that takes pride in the fresh ingredients that make up our tasty dishes.<br>
<a href="#">Learn More</a>
</div>
<div class="icon3">
<img src="images/menuIcon.png" alt="Plate and silverware">
<h2>the best menu</h2>
Our menu of pasta, pizza and Italian
cuisine handmade with love, from
scratch, daily.<br>
<a href="#">Learn More</a>
</div>
</section>
<!--advertisment section-->
<section id="ad" class="flex">
<div class="container">
<h1>Large Pizza w/unlimited toppings<br>
<strong><sup>$</sup>12<sup>.99</sup></strong></h1>
</div>
</section>
<!--map section-->
<section id="map">
<h1>Our Locations</h1>
<a href="#"><img src="images/map.jpg"/></a>
</section>
<!--photo gallery section-->
<section id="gallery flex">
<a href="#" class="image"><img src="images/pizzapie.jpg" alt="pizza pie"></a>
<a href="#" class="image"><img src="images/wine.jpg" alt="wine"></a>
<a href="#" class="image"><img src="images/pizzaslice.jpg" alt="toast"></a>
<a href="#" class="image"><img src="images/charcutrie.jpg" alt="pizza"></a>
<a href="#" class="image" ><img src="images/charcutrie.jpg" alt="chacuterie board"></a>
<a href="#" class="image"><img src="images/pizzaslice.jpg" alt="pizza"></a>
<a href="#" class="image"><img src="images/wine.jpg" alt="wine"></a>
<a href="#" class="image"><img src="images/pizzapie.jpg" alt="pizza pie"></a>
</section>
<!--footer-->
<footer>
<div class="container">
<h2>italian joy</h2>
<h4>now with 2 locations</h4>
<div class="flex">
<div class="footnote">
123 Nowhere Lane<br>
Orlando, FL 32806<br>
(407) 555-1234<br>
orl@italianjoy.com<br>
</div>
<div class="footnote">
456 Here’n There Lane<br>
Casselberry, FL 32707<br>
(407) 555-1234<br>
cass@italianjoy.com<br>
</div>
</div>
<hr>
<div class="maillist">
<h3>join our mailing list</h3>
<form>
<input type="text" name="Email Address" placeholder="Email Address">
<button class="button">SUBMIT</button>
</form>
</div>
</div>
</footer>
</body>
</html>