-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
54 lines (53 loc) · 2.63 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
<!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">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Google+Sans:400,500&display=swap"></link>
<link rel="stylesheet" href="style.css">
<title>Google Keep</title>
</head>
<body>
<main>
<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>
<header>
<img src="https://www.gstatic.com/images/branding/product/1x/keep_48dp.png" alt="">
<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">
<svg id="placeholder-logo" xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2">
<path stroke-linecap="round" stroke-linejoin="round" d="M9.663 17h4.673M12 3v1m6.364 1.636l-.707.707M21 12h-1M4 12H3m3.343-5.657l-.707-.707m2.828 9.9a5 5 0 117.072 0l-.548.547A3.374 3.374 0 0014 18.469V19a2 2 0 11-4 0v-.531c0-.895-.356-1.754-.988-2.386l-.548-.547z" />
</svg>
<p id="placeholder-text">Notes you add appear here</p>
</div>
<h1 >
<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 class="color-option" data-color="#808080" id="grey"></div>
<div class="color-option" data-color="#c0c0c0" id="silver"></div>
</div>
</main>
<script src="app.js"></script>
</body>
</html>