-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfirmation.html
executable file
·65 lines (62 loc) · 2.14 KB
/
confirmation.html
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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>Pizza Portal | Confirmation</title>
<link type="text/css" rel="stylesheet" href="styles.css"/>
</head>
<body>
<div id="header">
<div>
<ul class="first">
<li><a href="/">Home</a></li>
<li><a href="/order">Order</a></li>
</ul>
<div>
<a href="/"><img src="img/logo.jpg" alt="Logo"></a>
</div>
<ul class="second" style="margin-left: 350px">
<li><a href="/checkout" id="cart_link">My Cart (0)</a></li>
<li><a href="/about">About</a></li>
</ul>
</div>
</div>
<div id="content">
<div style="margin-top: 70px;">
<p>Thank you for your order.</p>
<p>Pizza will be delivered to your address during 40 minutes.</p>
</div>
</div>
<div id="footer">
<div>
<ul>
<li id="pasta">
<div>
<span>Pasta</span>
<p>Pasta is a staple food of traditional Italian cuisine, with the first reference dating to 1154 in Sicily.
It is also commonly used to refer to the variety of pasta dishes.</p>
<a href="/" class="more">More</a>
</div>
</li>
<li id="pizza">
<div>
<span>Pizza</span>
<p>Pizza is an oven-baked flat bread generally topped with tomato sauce and cheese.
It is commonly supplemented with a selection of meats, vegetables and condiments.</p>
<a href="/" class="more">More</a>
</div>
</li>
<li id="callus">
<div>
<span>Call us now!</span>
<b>111-111-1111</b>
<p><strong>Contact us at:</strong><br><i>[email protected]</i></p>
<p><strong>Send mail:</strong><span>#46700 Westinghouse Drive,<br>Mission Blvd<br>Fremont 94539</span></p>
</div>
</li>
</ul>
</div>
</div>
<script type="text/javascript" src="scripts.js"></script>
</body>
</html>