forked from simeydotme/pokemon-cards-css
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (26 loc) · 1.42 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
<!DOCTYPE html>
<html prefix="og: http://ogp.me/ns#" lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Cairo Pokemon Cards</title>
<meta name="description" content="Free NFTs fan project from the 1996 base set of Pokemon cards." />
<link rel="icon" href="favicon.png" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@700&family=Roboto:ital,wght@0,300;0,700;1,300;1,700&display=swap">
<link rel="stylesheet" href="css/global.css" />
<link rel="stylesheet" href="css/cards.css" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@dub_zn" />
<meta name="twitter:creator" content="@dub_zn" />
<meta name="twitter:title" content="PokeCairo Cards" />
<meta name="twitter:description" content="Get one pack per day and Mint'em all!" />
<meta name="twitter:image" content="https://user-images.githubusercontent.com/58611754/209554835-45acd93e-ed93-4dca-8b2c-dc83e2c420b7.png" />
<meta name="og:image" content="https://user-images.githubusercontent.com/58611754/209554835-45acd93e-ed93-4dca-8b2c-dc83e2c420b7.png" />
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>