-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (43 loc) · 1.96 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
<html>
<head>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Google+Sans:400,500&display=swap"></link>
<link rel="stylesheet" href="style.css">
</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">
<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="other">
<h2 class="header-title">Keep</h2>
</header>
<div id="form-container">
<form id="form" autocomplete="off">
<input id="note-title" placeholder="Title" type="text">
<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="app.js"></script>
</body>
</html>