-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (23 loc) · 1.27 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
<!doctype html>
<html lang="en">
<head>
<!-- Website information metadata -->
<meta name="description" content=""> <!-- The actual description text that may appear in search engine results -->
<meta property="og:title" content=""> <!-- The title text that will appear when the page is shared on social media platforms -->
<meta property="og:description" content=""> <!-- The description text that will appear on social media -->
<meta property="og:image" content=""> <!-- Defines an image to be displayed when the page is shared on social media -->
<meta property="og:url" content=""> <!-- The URL that will be used when the page is shared on social media -->
<!-- Prevent browswer from storing local copy to always fetch up to date files -->
<meta http-equiv='cache-control' content='no-cache'>
<meta http-equiv='expires' content='0'>
<meta http-equiv='pragma' content='no-cache'>
<meta charset="UTF-8" />
<link rel="icon" type="image" href="https://upload.wikimedia.org/wikipedia/commons/f/f1/Vitejs-logo.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>React Search Filter</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>