-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
48 lines (42 loc) · 1.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon-16x16.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<!-- lowers only for word cards -->
<link
href="https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap&text=%20_abcdefghijklmnopqrstuvwxyz"
rel="stylesheet"
/>
<!-- titles,h1s -->
<link
href="https://fonts.googleapis.com/css2?family=Architects+Daughter&display=swap&text=%20!ABCELNOSTUWY"
rel="stylesheet"
/>
<!-- names only - alphanumeric, dash, apostrophe, space-->
<link
href="https://fonts.googleapis.com/css2?family=Indie+Flower&display=swap&text=%20-'0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"
rel="stylesheet"
/>
<!-- the above plus exclamation point -->
<link
href="https://fonts.googleapis.com/css2?family=Luckiest+Guy&display=swap&text=%20-'0123456789!ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"
rel="stylesheet"
/>
<!-- the above plus period, underscore and colon -->
<link
href="https://fonts.googleapis.com/css2?family=Anonymous+Pro&display=swap&text=%20-()'.!0123456789%3AABCDEFGHIJKLMNOPQRSTUVWXYZ_abcdefghijklmnopqrstuvwxyz"
rel="stylesheet"
/>
<meta name="description" content="clean tablet, a blank slate clone" />
<title>Clean Tablet</title>
</head>
<body>
<noscript> You need to enable JavaScript to run this app. </noscript>
<div id="root"></div>
<script type="module" src="/front/main.jsx"></script>
</body>
</html>