generated from msisaif/react-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
23 lines (19 loc) · 814 Bytes
/
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
<!DOCTYPE html>
<html lang="en" class="dark">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="TIC-TAC-TOE" />
<meta name="keywords" content="tic-tac-toe, React, JavaScript" />
<meta name="author" content="MSI" />
<meta property="og:title" content="TIC-TAC-TOE" />
<meta property="og:description" content="The tic-tac-toe game by React JS" />
<meta property="og:image" content="/images/tic-tac-toe.png" />
<link rel="icon" type="image/png" href="/icon.png" />
<title>TIC-TAC-TOE</title>
</head>
<body class="dark:bg-slate-900 dark:text-white bg-main font-sans antialiased">
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>