-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (33 loc) · 1.13 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Javascript + DOM</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="container>">
<h1 class="coolTitle mt-3 mb-3" >Shopping List</h1>
<div>
<h2 id="first" class="text-center">Get it done today</h2>
</div>
<div class="d-flex justify-content-center mt-3 mb-3">
<label class="mr-2">Enter item:</label>
<input class="mr-2" id="userinput" type="text">
<button id="enter" type="submit" class="btn btn-success">Add</button>
</div>
<div class="d-flex justify-content-center mt-3 mb-3">
<ul>
<li class="bold red" random="23">Notebook</li>
<li>Jello</li>
<li>Spinach</li>
<li>Rice</li>
<li>Birthday Cake</li>
<li>Oranges</li>
</ul>
</div>
</div>
<script type="text/javascript" src="bundle.js"></script>
</body>
</html>