forked from alecstewart/Ice-Cream-Shop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Ice Cream Shop.html
119 lines (110 loc) · 3.3 KB
/
Ice Cream Shop.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
<html>
<head>
<title>Ice Cream Shop</title>
<meta name="description" content="Alec's Ice Cream.">
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no" />
</head>
<style>
div:hover {
background: white;
position: relative;
text-align: center;
border: 10px,
width: 600px;
height: 200px;
border-radius: 50px;
}
.div2 {
background: linear-gradient(yellow,white);
position: relative;
text-align: center;
border: 10px,
width: 600px;
height: 200px;
border-radius: 50px;
}
.div3 {
background: linear-gradient(green,white);
position: relative;
text-align: center;
border: 10px,
width: 600px;
height: 200px;
border-radius: 50px;
}
.div4 {
background: white;
position: relative;
text-align: center;
border: 10px,
width: 600px;
height: 200px;
border-radius: 50px;
}
.div5 {
background: linear-gradient(red,white);
position: relative;
text-align: center;
border: 10px,
width: 600px;
height: 200px;
border-radius: 50px;
}
.div6 {
background: white;
position: relative;
text-align: center;
border: 10px,
width: 600px;
height: 200px;
}
img {
background: white;
position: center;
}
}
}
</style>
</head>
<body>
<header> </header>
<div class="div6" title = Strawberry>
<img position="center;" src="http://icecream.kellishaver.com/assets/logo-aea74ef52952ad6321067c09e140c8aa.png">
</div>
<br />
<br />
<br />
<br />
<br />
<div class="div2" title = Ice Cream Shop #1>
<h1 style="color: black;">Ice Cream Shop #1</h1>
<br />
<h3 style="color: black; text-align: center;">The Ice Cream Shop #1 was established on June 13th, 2016 for educational purposes. It is not a real store. There is no ice cream here</h3>
</div>
<div class="div3" title = About Us>
<h2 style="color: black;";>About Us</h2>
<p>hours: 24/7
<p>address: 1 North St.
<p>phone: 111-1111
</div>
<div class="div5" title = Vanilla>
<h2 style="color: black;";>Vanilla</h2>
<p>calories: 1,000
<p>sugar free
<p><a id="Ingredients" href="https://en.wikipedia.org/wiki/Vanilla">Ingredients</a>
</div>
<div class="div2" title = Chocolate>
<h2 style="color: black;";>Chocolate</h2>
<p>calories: 2,000
<p>sugar free
<p><a id="Ingredients" href="https://en.wikipedia.org/wiki/Chocolate">Ingredients</a>
</div>
</div>
<div class="div3" title = Strawberry>
<h2 style="color: black;";>Strawberry</h2>
<p>calories: 3,000
<p>sugar free
<p><a id="Ingredients" href="https://en.wikipedia.org/wiki/Strawberry">Ingredients</a>
</div>
</body>
</html>