-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
128 lines (112 loc) · 4.01 KB
/
index.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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Eye Pie - Pizza for the Blind</title>
<link rel="stylesheet" type="text/css" href="styles.css">
<!--
Below code is the email functionality
String needed to actually send emails is removed, as it would give access to my email.
I will add it in for the presentation.
-->
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/[email protected]/dist/email.min.js"></script>
<script type="text/javascript">
(function() {
emailjs.init("user_mFGpvXnHilLtXHNJIZSWD");
})();
</script>
</head>
<body>
<header>
<div id="logoTagline">
<a href="index.html"><img class="logo" src="Pizza.png" alt="logo"></a>
<div>
<h1>Eye Pie</h1>
<span>"I could order pizza with my eyes closed!"</span>
</div>
</div>
<div id="pageSelectionWrapper">
<div id="selectionList">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="placeOrder.html">Place Order</a></li>
<li><a href="aboutUs.html">About Us</a></li>
<li><a href="menu.html">View Menu</a></li>
</ul>
</div>
</div>
</header>
<div class="pizzaAd">
<p class="picText">Our Pizza, Our Missions</p>
</div>
<div class="ads">
<div class="ad">
<div class="ad-container">
<img class="ad-pic" src="eye.png" alt="Blind Charity Logo">
<div class="ad-body">
<h2>Support the Blind Foundation Charity Cause</h2>
<p><i>
15% of profits go directly to the charity. Donate now!
</i></p>
</div>
</div>
</div>
<div class="ad">
<div class="ad-container">
<img class="ad-pic" src='topping.jpg' alt='Pepperoni Pizza' />
<div class="ad-body">
<h2>Choose from over 10 toppings!</h2>
</div>
</div>
</div>
<div class="ad">
<div class="ad-container">
<img class="ad-pic" src='dominos.jpg' alt='Dominos News Logo' />
<div class="ad-body">
<a href="https://www.cnbc.com/2019/10/07/dominos-supreme-court.html">
<h2>Dominos Pizza Sued!</h2>
</a>
</div>
</div>
</div>
<div class="ad" id=commentForm>
<h1>Leave a comment!</h1>
<aside><i>* required</i></aside>
<form>
<fieldset>
<p>
<label>Name</label>
<input type="text" id="name" required/> *
</p>
<p>
<label>Email</label>
<input type="email" id="email" />
</p>
<p>
<label>Title</label>
<input type="text" id="title" required /> *
</p>
<p>
<label>Comment</label>
<input type="text" id="comment" required/> *
</p>
<p>
<label>Background Color</label>
<input type="color" value="#808080" id="backColor" />
</p>
<p>
<label>Text Color</label>
<input type="color" value="#e9e9d8" id="textColor" />
</p>
<p>
<input type="submit" id="submitComment">
</p>
</fieldset>
</form>
</div>
<div class="ad" id="comments">
</div>
<script src="indexScript.js" async defer></script>
</div>
</body>
</html>