-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsecond_page.html
More file actions
44 lines (39 loc) · 1.59 KB
/
second_page.html
File metadata and controls
44 lines (39 loc) · 1.59 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Remember</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="second_page.css" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.2/css/bootstrap.min.css" integrity="sha384-Smlep5jCw/wG7hdkwQ/Z5nLIefveQRIY9nfy6xoR1uRYBtpZgI6339F5dgvm/e9B" crossorigin="anonymous">
</head>
<body>
<nav class="navbar navbar-inverse .navbar-dark sticky-top" id="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="index.html">Home</a>
</div>
</div>
</nav>
<div class="container">
<div id="whole_card" class="card col-sm-8">
<h2>What To Do</h2>
<div class="card-body">
<form id="form">
<div class="form-group">
<input class="form-control" id="input" placeholder="I Want To ...">
</div>
<button type="submit" class="btn btn-primary" id="add">Submit</button>
</form>
<div id="text">
</div>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script src="submit.js"></script>
<script src="helper.js"></script>
<script src="second_page.js"></script>
</body>
</html>