-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.html
48 lines (48 loc) · 1.82 KB
/
main.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
<!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="style.css">
<title>Google Keep Clone</title>
</head>
<body>
<div class="modal">
<div class="modal-content">
<input type="" class="modal-title">
<input type="text" class="modal-text" type="text">
<span class="modal-update-button" type="text">Update</span>
</div>
</div>
<main>
<header>
<img class="header-logo"
src="https://www.gstatic.com/images/branding/product/1x/keep_48dp.png" alt="Logo">
<h2 class="header-title">GoogleKeepClone</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-container">
</div>
<div id="placeholder">
<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>