-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
44 lines (43 loc) · 1.31 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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-125924205-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-125924205-1');
</script>
<link href='https://fonts.googleapis.com/css?family=Sofia' rel='stylesheet'>
<style>
.container {
position: absolute;
top: 45%; left: 50%;
transform: translate(-50%, -50%);
text-align: center;
}
#arrow {
width: 100px;
width: 15vmin;
display: block;
margin: 0 auto;
}
#flower {
width: 400px;
width: 90vmin;
}
</style>
<link rel="icon" type="image/png" href="./favicon-16x16.png">
<link rel="apple-touch-icon-precomposed" type="image/png" href="./favicon-16x16.png">
<title>Toaq with Ease</title>
</head>
<body>
<main class="container">
<img id="arrow" src="assets/arrow.gif">
<a href="00/"><img id="flower" src="assets/TwE_Logo.png" title="Click to start" alt="Flower"></a>
</main>
</body>
</html>