This repository has been archived by the owner on Sep 6, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
58 lines (53 loc) · 1.94 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
<html>
<head>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link rel="manifest" href="./manifest.webmanifest" id="manifest" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>What Pokémon are you today ?</title>
<meta name="title" content="What Pokémon are you today ?" />
<meta name="description" content="Discover what Pokemon you are today." />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://wpayt.diams.app" />
<meta property="og:title" content="What Pokémon are you today ?" />
<meta
property="og:description"
content="Discover what Pokemon you are today."
/>
<meta property="og:image" content="./src/images/card.png" />
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://wpayt.diams.app" />
<meta property="twitter:title" content="What Pokémon are you today ?" />
<meta
property="twitter:description"
content="Discover what Pokemon you are today."
/>
<meta property="twitter:image" content="./src/images/card.png" />
<meta charset="UTF-8" />
<link rel="stylesheet" href="src/scss/style.scss" />
<link
rel="shortcut icon"
href="./src/images/icon.png"
crossorigin="anonymous"
type="image/PNG"
class="icon"
/>
</head>
<body>
<div class="day">
<div>
<h1 id="hello"></h1>
<p id="you"></p>
<p class="footer"></p>
</div>
<div><img id="sprite" src="#" alt="" crossorigin="anonymous" /></div>
</div>
<div class="history"></div>
<script src="src/ts/index.ts"></script>
</body>
</html>