-
Notifications
You must be signed in to change notification settings - Fork 35
/
index.html
60 lines (50 loc) · 2.05 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!doctype html>
<html lang="en">
<head>
<!-- Character Encoding -->
<meta charset="UTF-8" />
<!-- Viewport Meta -->
<meta
name="viewport"
content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no, interactive-widget=resizes-content"
/>
<!-- Title -->
<title>Notpad</title>
<!-- Favicon -->
<link rel="icon" href="/Notpad/favicon.png" />
<!-- Description -->
<meta
name="description"
content="Notpad is a simple, open-source, and distraction-free note-taking app to organize your thoughts effortlessly."
/>
<!-- Keywords -->
<meta name="keywords" content="Notpad, Notepad app, note-taking, text editor, smart notepad" />
<!-- Author -->
<meta name="author" content="Muhammed-Rahif" />
<!-- Open Graph Meta Tags for Social Media -->
<meta property="og:title" content="Notpad - The classic notepad, enhanced!" />
<meta
property="og:description"
content="Notpad is a simple, open-source, and distraction-free note-taking app to organize your thoughts effortlessly."
/>
<meta property="og:image" content="/Notpad/logo_square.png" />
<meta property="og:url" content="https://muhammed-rahif.github.io/Notpad/" />
<meta property="og:type" content="website" />
<!-- Twitter Card Meta Tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Notpad - The classic notepad, enhanced!" />
<meta
name="twitter:description"
content="Notpad is a simple, open-source, and distraction-free note-taking app to organize your thoughts effortlessly."
/>
<meta name="twitter:image" content="/Notpad/logo_square.png" />
<!-- Robots Meta Tag -->
<meta name="robots" content="index, follow" />
<!-- Theme Color for Mobile Browsers -->
<meta name="theme-color" content="#888888" />
</head>
<body spellcheck="false" oncontextmenu="return false;">
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>