forked from ntijoh/zoo2023
-
Notifications
You must be signed in to change notification settings - Fork 0
/
order.html
177 lines (137 loc) · 5.7 KB
/
order.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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<title>Polar Respit</title>
</head>
<body>
<div class="main-wrap">
<div class="main-screen image-item"
style="background-image: url(img/food/ice-cream.jpg);background-position-y:15%; height: 50vh;">
<h1 id="cover-main-line" class="no-select">Order</h1>
</div>
<div id="order-grid">
<div id="top">
<!-- <h1>Dumm text 101</h1> -->
</div>
<div id="aside-bar">
<div class="aside-sticky">
<a href="#fruit">
<h2>Fruit</h2>
</a>
<a href="#human">
<h2>Human</h2>
</a>
<a href="#polar-bear">
<h2>Polar bear</h2>
</a>
<a href="#pigelin">
<h2>Pigelin</h2>
</a>
<a href="#other">
<h2>Other</h2>
</a>
</div>
</div>
<div id="main-wrap">
<div class="section-header" id="fruit">
<h1>Fruit</h1>
</div>
<div class="order-card">
<div class="order-card-text">
<h1>Pizza??</h1>
<hr>
<p>Väldigt god jag lovar</p>
<h2>200kr</h2>
</div>
<div class="image-item" style="background-image:url(img/food/NZ-food-image-1024x683.webp);"></div>
</div>
<div class="order-card">
<div class="order-card-text">
<h1>Pizza??</h1>
<hr>
<p>Väldigt god jag lovar</p>
<h2>200kr</h2>
</div>
<div class="image-item" style="background-image:url(img/food/NZ-food-image-1024x683.webp);"></div>
</div>
<div class="order-card">
<div class="order-card-text">
<h1>Pizza??</h1>
<hr>
<p>Väldigt god jag lovar</p>
<h2>200kr</h2>
</div>
<div class="image-item" style="background-image:url(img/food/NZ-food-image-1024x683.webp);"></div>
</div>
<div class="section-header" id="human">
<h1>Human</h1>
</div>
<div class="order-card">
<div class="order-card-text">
<h1>Pizza??</h1>
<hr>
<p>Väldigt god jag lovar</p>
<h2>200kr</h2>
</div>
<div class="image-item" style="background-image:url(img/food/NZ-food-image-1024x683.webp);"></div>
</div>
<div class="section-header" id="polar-bear">
<h1>Polar bear</h1>
</div>
<div class="order-card">
<div class="order-card-text">
<h1>Pizza??</h1>
<hr>
<p>Väldigt god jag lovar</p>
<h2>200kr</h2>
</div>
<div class="image-item" style="background-image:url(img/food/NZ-food-image-1024x683.webp);"></div>
</div>
<div class="section-header" id="pigelin">
<h1>Pigelin</h1>
</div>
<div class="order-card">
<div class="order-card-text">
<h1>Pizza??</h1>
<hr>
<p>Väldigt god jag lovar</p>
<h2>200kr</h2>
</div>
<div class="image-item" style="background-image:url(img/food/NZ-food-image-1024x683.webp);"></div>
</div>
<div class="section-header" id="other">
<h1>Other</h1>
</div>
<div class="order-card">
<div class="order-card-text">
<h1>Pizza??</h1>
<hr>
<p>Väldigt god jag lovar</p>
<h2>200kr</h2>
</div>
<div class="image-item" style="background-image:url(img/food/NZ-food-image-1024x683.webp);"></div>
</div>
</div>
</div>
<footer>
<h1 id="footer-header" class="no-select">The Polar Respit</h1>
<p id="footer-smallprint">This site is mangageed and run by Penguin.inc. Penguin.inc does not follow
international standars of law
nor geniva convetion or similar due to the fact they are penguins. Any copmplaint will be resolved with
leathal force.</p>
</footer>
</div>
<div id="header">
<a class="nav-item no-select" href="index.html">Home</a>
<a class="nav-item no-select" href="about.html">About us</a>
<p class="nav-item no-select" id="logo-text">PR</p>
<a class="nav-item no-select" href="staff.html">Staff</a>
<a class="nav-item no-select" href="order.html">Order</a>
</div>
<script src="js/headShrink.js"></script>
</body>
</html>