-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (44 loc) · 2.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- CSS only -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-0evHe/X+R7YkIZDRvuzKMRqM+OrBnVFBL6DOitfPri4tjfHxaWutUpFmBp4vmVor" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<title>NOTES</title>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<div class="container-fluid justify-content-center">
<div class="navbar-brand">NOTES</div>
</div>
</nav>
<div class="container mt-4 bg-light">
<form class="row">
<label for="fname" class="p-4"><strong class="note-head">Add a new task: </strong></label>
<input type="text" id="input" name="fname" class="col-md-5 col-10" style="margin-left: 3vw;" placeholder="Enter your note here!">
<div class="col-lg-1 col-md-0"></div>
<input type="submit" id="submit" class="col-lg-3 col-md-2 col-10 p-0 mt-2 btn btn-success" style="margin-left: 3vw;" value="ADD TASK"></input>
</form>
<div style="height: 8vh;"></div>
</div>
<div class="container mt-4 justify-content-center">
<div class="row">
<div class="col-5"></div>
<div class="bg-light rounded col-xl-2 col-lg-3" id="head"> Your Work list</div>
</div>
</div>
<div class="container mt-4 bg-light" id="cont">
<div id="add-area" class="row">
<!-- Add elements here! -->
</div>
</div>
<div class="container footer"></div>
</body>
<!-- JavaScript Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-pprn3073KE6tl6bjs2QrFaJGz5/SUsLqktiwsUTF55Jfv3qYSDhgCecCxMW52nD2" crossorigin="anonymous"></script>
<script src="mainSavable.js"></script>
</html>
<!--╚╝τ$µσπΓ-->