-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (47 loc) · 1.78 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Google+Sans:400,500&display=swap">
<meta charset="UTF-8" />
<title>Google Keep Clone</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<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" alt="logo" src="https://www.gstatic.com/images/branding/product/1x/keep_48dp.png">
<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" alt="logo-placeholder" src="lightbulb-outline.png">
<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>