-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (34 loc) · 2.33 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<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>
<link rel="preload" as="style" href="https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap">
<link rel="preload" as="style" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0">
<link rel="stylesheet" media="print" href="https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap" onload="this.removeAttribute('media')">
<link rel="stylesheet" media="print" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" onload="this.removeAttribute('media')">
<link rel="icon" href="favicon.svg">
<link rel="mask-icon" href="mask-icon.svg">
<link rel="apple-touch-icon" href="apple-touch-icon.png">
<link rel="manifest" href="manifest.json">
<title>Hello Dict - free dictionary</title>
<meta name="description" content="Dictionary coded in React.js. Just type in the word in the box and search. Coded with ❤️ by WC Leung.">
<meta property="og:url" content="https://hellodict.netlify.app">
<meta property="og:type" content="website">
<meta property="og:title" content="Hello Dict - free dictionary">
<meta property="og:description" content="Dictionary coded in React.js. Just type in the word in the box and search. Coded with ❤️ by WC Leung.">
<meta property="og:image" content="https://hellodict.netlify.app/og-image.webp">
<meta name="twitter:card" content="summary_large_image">
<meta property="twitter:domain" content="hellodict.netlify.app">
<meta property="twitter:url" content="https://hellodict.netlify.app">
<meta name="twitter:title" content="Hello Dict - free dictionary">
<meta name="twitter:description" content="Dictionary coded in React.js. Just type in the word in the box and search. Coded with ❤️ by WC Leung.">
<meta name="twitter:image" content="https://hellodict.netlify.app/og-image.webp">
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>