-
Notifications
You must be signed in to change notification settings - Fork 0
/
Index.html
47 lines (43 loc) · 1.68 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
<!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 href="https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css">
<link rel="shortcut icon" href="Logo/Favicon.ico" type="image/x-icon">
<title>Google Keep</title>
<link rel="stylesheet" href="Index.css">
</head>
<body>
<div class="Nav">
<div class="Logo">
<img src="/Logo/Google Keep.png" alt="Google Keep Logo Here">
<span class="Same-Text-Style">Keep</span>
</div>
<div class="Search">
<i class="fa-solid fa-magnifying-glass Search-Click"></i>
<input type="search" id="Search-Text" placeholder="Search">
</div>
<div class="Call">
<i class="fa-solid fa-arrow-right"></i>
<button>Add Note</button>
</div>
</div>
<hr class="Ruler">
<!-- ================Navbar Done=============== -->
<div class="All-Notes">
<!-- <div class="Note-Box">
<div class="Operations">
<div class="Images">
<img src="/Icons/Save.png" alt="Save Here">
<img class="Del" src="/Icons/Delete.png" alt="Delete Here">
</div>
</div>
<p class="Note-Text"></p>
<textarea name="Write" id="Area" class="Note-Text" cols="100%"></textarea> -->
</div>
<script src="Index.js" defer></script>
</body>
</html>