-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (34 loc) · 1.49 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
<!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">
<title>Inviting someone to eat out</title>
<!-- UIkit CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/uikit.min.css" />
<!-- UIkit JS -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/uikit.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/uikit-icons.min.js"></script>
<!-- TailwindCSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/tailwindcss/2.2.16/tailwind.min.css">
</head>
<body>
<main class="box-content">
<header style="height: 30vh;" class="uk-animation-slide-top-small m-auto w-11/12 flex justify-center text-3xl text-center flex-col">
<h1 class="pt-2 pb-3">
Hey, I think you're really special and I want to go out with you, I'm paying the food! 😘
</h1>
<h3 class="text-xs">
Scroll the menu
</h3>
<span class="text-black text-s">
↓
</span>
</header>
<section style="height:70vh;" class="uk-animation-slide-top-small m-auto">
<iframe class="m-auto" src="https://web.aw.ca/en/our-menu/burgers" frameborder="0" width="95%" height="98%"></iframe>
</section>
</main>
</body>
</html>