-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (34 loc) · 1.28 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
<!--- Author: - Atul Pratap Singh */
/* made in :- 08 FEB 2022 */-->
<!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">
<link rel="stylesheet" href="style.css">
<script src="https://kit.fontawesome.com/9cf5c8bf79.js" crossorigin="anonymous"></script>
<title>Atul List Webpage</title>
</head>
<body>
<h2>Atul Grocery List Webpage</h2>
<div class="addItems-container">
<h4 class="addItems-action">display action</h4>
<h2 class="addItems-title" style=" font-weight: bold;
font-size: 25px;">add grocery items</h2>
<form action="">
<input type="text" name="" id="" class="addItems-input">
<button type="submit" class="addItems-submit">submit here</button>
</form>
</div>
<div class="displayItems-container">
<h4 class="displayItems-action">display action</h4>
<h2 class="displayItems-title">grocery items</h2>
<div class="grocery-list">
</div>
<button type="submit" class="displayItems-clear">clear items</button>
</div>
</div>
<script src="app.js"></script>
</body>
</html>