-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
82 lines (80 loc) · 2.45 KB
/
Copy pathindex.html
File metadata and controls
82 lines (80 loc) · 2.45 KB
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
78
79
80
81
82
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Note Taker</title>
<link rel="stylesheet" href="./CSS/style.css" />
</head>
<body>
<!-- title -->
<nav>
<div class="title">
<h3>I'll Remember Your Notes</h3>
</div>
</nav>
<div class="main">
<section class="hero">
<form class="form">
<h4>Hello! Add Your Items Here 👇</h4>
<p class="alert"></p>
<!-- Form for input from user -->
<div class="main-form">
<input type="text" id="add-item" placeholder="eg laptop" />
<button type="submit" class="main-btn">Add Item</button>
</div>
<!-- dynamically added by JS -->
</form>
<div class="added-items">
<div class="addeditem-list">
<!-- <article class="single-item">
<p class="item-title">
c
</p>
<div class="btn-container">
<button class="edit-btn">
<i class="far fa-edit"></i>
</button>
<button class="clear-btn">
<i class="fas fa-trash"></i>
</button>
</div>
</article> -->
</div>
<!-- clear all button -->
<button id="clear-item">Clear All</button>
</div>
</section>
</div>
<!-- Footer -->
<section class="footer">
<div class="mail">
<a href="mailto:photography.pritambera@outlook.com"
><span>✍</span> Somthing Here
</a>
</div>
<div class="social-links">
<ul class="social-links">
<li>
<a
href="https://facebook.com/pritamlovesphotography"
class="fa fa-facebook"
></a>
</li>
<li>
<a
href="https://github.com/pritambera2000"
class="fa fa-github"
></a>
</li>
<li>
<a href="https://twitter.com/pritamhacks" class="fa fa-twitter"></a>
</li>
</ul>
</div>
<h3>Made With <span>☕</span> by Pritam</h3>
</section>
<script src="./JavaScript/script.js"></script>
</body>
</html>