-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (43 loc) · 1.64 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
<!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">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css" integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<title>OneNote App</title>
</head>
<body>
<div class="navbar">
<div class="logo">
<a href="">
<i class="fa-solid fa-note-sticky"></i> OneNote
</a>
</div>
</div>
<div class="addNoteBtn">
<span class="addBtn">
<i class="fa-solid fa-angle-right"></i>
Add Note
</span>
</div>
<div class="inputSection">
<div class="inputContainer">
<div class="close-btn"><i class="fa-solid fa-xmark"></i></div>
<textarea name="note" id="noteInput" cols="20" rows="10" placeholder="Enter your note"></textarea>
<div class="save-btn">Save</div>
</div>
</div>
<div class="NoteContainer">
<!-- <div class="note">
<div class="noteBtn">
<div class="noteEditBtn"><i class="fa-solid fa-pen-to-square"></i></div>
<div class="noteDeleteBtn"><i class="fa-solid fa-trash-can"></i></div>
</div>
<textarea>GDf</textarea>
</div> -->
</div>
<script src="script.js"></script>
</body>
</html>