-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
77 lines (76 loc) · 2.88 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="./images/favicon.ico" type="image/x-icon" />
<title>NoteApp | Note Taking Application</title>
<!-- ===== Font Awesome ==== -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"
integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<!-- ==== Custom CSS File ==== -->
<link rel="stylesheet" href="./css/style.css" />
</head>
<body>
<!-- ===== Main Notes Start ===== -->
<section class="main_notes">
<div class="container">
<div class="notes_wrapper">
<div class="notes_input">
<h1 class="heading">Note Application</h1>
<div class="input_fields">
<textarea
class="text_input"
placeholder="Enter Your Notes"
></textarea>
<button class="add_btn common_btn">Save Note</button>
</div>
</div>
<div class="show_output">
<h1 class="heading">Saved Notes</h1>
<div class="text_formatting">
<button class="bold text_format" title="bold"><b>B</b></button>
<button class="regular text_format" title="regular">R</button>
<button class="italic text_format" title="italic">I</button>
<button class="normal text_format" title="normal">N</button>
<button class="mark text_format" title="highlight">M</button>
<button class="download text_format" title="download">
<i class="fa-solid fa-download"></i>
</button>
</div>
<div class="output_color">
<div class="output example"></div>
<div class="colors">
<button class="text_color red" title="text-color:red"></button>
<button
class="text_color green"
title="text-color:green"
></button>
<button
class="text_color blue"
title="text-color:blue"
></button>
<button
class="text_color black"
title="text-color:black"
></button>
</div>
</div>
<div class="output_btn">
<button class="common_btn update_btn">Update</button>
<button class="common_btn delete_btn">Delete</button>
</div>
</div>
</div>
</div>
</section>
<!-- ===== Main Notes End ===== -->
<!-- ===== JS File ===== -->
<script src="./js/app.js"></script>
</body>
</html>