-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
57 lines (53 loc) · 2.54 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
<!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">
<meta property="og:image" content="assets/imgs/cover.png" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Google+Sans:400,500&display=swap"></link>
<link rel="stylesheet" href="assets/style.css"></link>
<link type="image/x-icon" href="https://www.gstatic.com/images/branding/product/1x/keep_48dp.png" rel="icon" />
<title>Keep Notes</title>
</head>
<body>
<div class="modal">
<div class="modal-content">
<input class="modal-title" placeholder="Title" type="text">
<!-- <input class="modal-text" placeholder="Take a note..." type="text"> -->
<textarea class="modal-text" cols="50" rows="5" placeholder="Take a note..."></textarea>
<span class="modal-close-button">Close</span>
</div>
</div>
<main>
<header>
<img class="header-logo" src="https://www.gstatic.com/images/branding/product/1x/keep_48dp.png" alt='header_logo' />
<h2 class="header-title">Keep</h2>
</header>
<div id="form-container">
<form id="form" autocomplete="off">
<input id="note-title" placeholder="Title" type="text">
<textarea class="text-area" id="note-text" cols="50" rows="5" placeholder="Take a note..."></textarea>
<!-- <input id="note-text" placeholder="Take a note..." type="text"> -->
<div id="form-buttons">
<button type="submit" id="submit-button">Submit</button>
<button type="button" id="form-close-button">Close</button>
</div>
</form>
</div>
<div id="notes"></div>
<div id="placeholder">
<!-- <img id="placeholder-logo" src="https://icon.now.sh/lightbulb_outline"> -->
<p id="placeholder-text">Notes you add appear here</p>
</div>
<div id="color-tooltip">
<div class="color-option" data-color="#fff" id="white"></div>
<div class="color-option" data-color="#d7aefb" id="purple"></div>
<div class="color-option" data-color="#fbbc04" id="orange"></div>
<div class="color-option" data-color="#a7ffeb" id="teal"></div>
</div>
</main>
<script src="assets/app.js"></script>
</body>
</html>
<!-- https://google.com/keep -->