-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
53 lines (45 loc) · 2.63 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./css/style.css">
<link rel="icon" type="image/x-icon" href="./assets/favicon-logo.svg">
<!-- Primary Meta Tags -->
<title>Zen Notes - Your Friendly Note Taking App </title>
<meta name="title" content="Zen Notes - Your Friendly Note Taking App ">
<meta name="description" content="It doesn't get more simple than this. Save any and all thoughts, ideas, recipes in one app: Zen Notes">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://zen-note.netlify.app/">
<meta property="og:title" content="Zen Notes - Your Friendly Note Taking App ">
<meta property="og:description" content="It doesn't get more simple than this. Save any and all thoughts, ideas, recipes in one app: Zen Notes">
<meta property="og:image" content="https://media.discordapp.net/attachments/1023115635649155144/1023861835851644938/ZEN_Notes.png">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://zen-note.netlify.app/">
<meta property="twitter:title" content="Zen Notes - Your Friendly Note Taking App ">
<meta property="twitter:description" content="It doesn't get more simple than this. Save any and all thoughts, ideas, recipes in one app: Zen Notes">
<meta property="twitter:image" content="https://media.discordapp.net/attachments/1023115635649155144/1023861835851644938/ZEN_Notes.png">
</head>
<body>
<header id="header">
<h1>Zen Note</h1>
<div class="header-right">
<button id="add-new" title="New Note">+</button>
<button id="theme-change" title="Change Theme"> <img src="./assets/theme-change.svg" alt="theme change img" class="theme-change-img"> </button>
</div>
</header>
<main id="notes-list">
</section>
</main>
<footer>
<p>Made with ❤️</p>
<p><a href="http://github.com/prantikseal" target="_blank">Prantik</a> | <a href="https://github.com/akashjangra2002" target="_blank">Akash</a> | <a href="https://github.com/radhika2104" target="_blank">Radhika</a> | <a href="https://github.com/vinit717" target="_blank">Vinit</a>
</p>
<a href="https://github.com/Team-Mojmaa/Zen-Notes" target="_blank"><button id="live-code"><Source Code/></button></a>
</footer>
<script defer src="./app/app.js"></script>
</body>
</html>