-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (36 loc) · 1.58 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>replit</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-4bw+/aepP/YC94hEpVNVgiZdgIC5+VKNBQNGCHeKRQN+PtmoHDEXuppvnDJzQIu9" crossorigin="anonymous">
</head>
<body class="bg-dark">
<div class='top'>
<nav class='navbar navbar-dark bg-dark shadow-lg p-3 mb-5 rounded'>
<span class="navbar-text mx-auto p-2" style="font-size: 1.5rem; color: darkcyan; font-family: monospace;">
Just Do It
</span>
</nav>
</div>
<div class="tasklist" id="taskList">
</div>
<footer class="footer bg-light py-2">
<div class="container d-flex justify-content-between align-items-center">
<input type="text" id="footerInput" class="form-control" placeholder="Type Item">
<button onclick="updateList()" type="button" class="btn btn-outline-info float-end"
style="background-color: darkcyan;">Add</button>
</div>
</footer>
<script src="script.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"
integrity="sha384-I7E8VVD/ismYTF4hNIPjVp/Zjvgyol6VFvRkX/vR+Vc4jQkC+hVqc2pM8ODewa9r"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-Rx+T1VzGupg4BHQYs2gCW9It+akI2MM/mndMCy36UVfodzcJcF0GGLxZIzObiEfa"
crossorigin="anonymous"></script>
</body>
</html>