-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
85 lines (80 loc) · 3.71 KB
/
index.html
File metadata and controls
85 lines (80 loc) · 3.71 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<!-- Primary meta tags -->
<meta name="title" content="Noterr | Quickly add your notes in browser">
<meta name="description" content="Noterr helps you to save your notes within your browser and access them anytime! Note:- We neither save your data nor share it with anyone.">
<meta name="keywords" content="Noterr, Notes, how to save notes in browser, how to my save notes within browser">
<meta name="author" content="Ashish Kumar">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://metatags.io/">
<meta property="og:title" content="Noterr | Quickly add your notes in browser">
<meta property="og:description" content="Noterr helps you to save your notes within your browser and access them anytime! Note:- We neither save your data nor share it with anyone.">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://metatags.io/">
<meta property="twitter:title" content="Noterr | Quickly add your notes in browser">
<meta property="twitter:description" content="Noterr helps you to save your notes within your browser and access them anytime! Note:- We neither save your data nor share it with anyone.">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>📔</text></svg>">
<!-- css -->
<link rel="stylesheet" href="css/style.css" />
<!-- javascript -->
<script src="js/script.js" defer ></script>
<!-- google fonts -->
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700&family=Roboto:wght@500;700&display=swap"
rel="stylesheet"
/>
<title>Noterr | Quickly add your notes in browser</title>
</head>
<body>
<div id="first-time">
<h3>We care your Privacy...</h3>
<p>We do not store or share your data with anyone. Any note that you add here is kept within your browser and is not shared to anyone or stored in our databse.</p>
<button id="visitedBtn">COOL, LET'S START 🔥</button>
</div>
<div id="mobileHeader" class="header">
<h2>Your Notes 📓</h2>
<button id="addNoteLink">Add Note</button>
</div>
<div id="body">
<section class="left-pane">
<div class="header">
<h2>Your Notes 📓</h2>
</div>
<!-- Notes will be added by JS -->
<div id="notes">
</div>
</section>
<section class="right-pane">
<div id="add-note" class="hidden">
<span>
<input id="noteTitle" type="text" placeholder="Title" />
<p class="alert hidden">Please enter title</p></span
>
<span class="desSpan">
<textarea
id="noteDes"
cols=30"
rows="10"
placeholder="Describe your note here..."
></textarea>
<p class="alert hidden">Please enter your note</p></span
>
<button id="addToNoterr">Add to Noterr</button>
</div>
<div id="d-note" class="hidden">
<h2>Note will display here</h2>
<p>
Once you add a note and click on the note card, it will open here in expand view.
</p>
</div>
</section>
</div>
</body>
</html>