-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (34 loc) · 1.25 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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Notes</title>
<link rel="stylesheet" href="css/styles.css">
<script src="js/index.js"></script>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet">
</head>
<body>
<div class="overlay"></div>
<div class="wrapper">
<header class="title">
<h1>Notes</h1>
<p>Never forget important stuff</p>
</header>
<main>
<section class="input">
<input type="text" placeholder="Title" maxlength="25" class="input-title hidden">
<span class="input-text" role="textarea" placeholder="Take note here..." contenteditable="true"></span>
<button class="submit-btn" type="submit" title="Add"><span class="material-icons">add</span></button>
</section>
<section class="notes">
</section>
</main>
<footer>
Made by <a href="https://github.com/darkHarry">Harry S. Mecwan</a>
</footer>
</div>
</body>
</html>