forked from rupomsoft/mern-x
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
20 lines (20 loc) · 836 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>MERN-X</title>
<meta name="description" content="A concise description of your webpage.">
<meta name="keywords" content="keyword1, keyword2, keyword3">
<meta name="robots" content="index,follow">
<link rel="canonical" href="https://www.example.com">
<meta property="og:title" content="Your Page Title">
<meta property="og:description" content="A concise description of your webpage.">
<meta property="og:image" content="https://www.example.com/image.jpg">
<meta property="og:url" content="https://www.example.com/your-page">
</head>
<body>
<div id="root"></div>
<script type="module" src="views/main.jsx"></script>
</body>
</html>