-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (30 loc) · 1.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- Primary Meta Tags -->
<title>Sudoku</title>
<meta name="description" content="A number puzzle">
<meta name="keywords" content="sudoku, puzzle, numbers">
<meta name="author" content="Seungmin Lee">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://uxplus.dev/sudoku">
<meta property="og:title" content="Sudoku">
<meta property="og:description" content="A number puzzle">
<meta property="og:image" content="https://uxplus.dev/assets/og.jpg" />
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image">
<meta property="twitter:domain" content="uxplus.dev">
<meta property="twitter:url" content="https://uxplus.dev/sudoku/">
<meta name="twitter:title" content="Sudoku">
<meta name="twitter:description" content="A number puzzle">
<meta name="twitter:image" content="https://uxplus.dev/assets/og.jpg">
</head>
<body>
<div id="app"></div>
<script src="main.js"></script>
</body>
</html>