-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpage4.html
34 lines (28 loc) · 1.14 KB
/
page4.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
<!DOCTYPE html>
<html>
<head>
<title>My Webpage</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" href="style.css">
</head>
<body>
<div id="customNav">
<ul>
<li><a href="page4.html">Page 4</a></li>
<li><a href="page3.html">Page 3</a></li>
<li><a href="page2.html">Page 2</a></li>
<li><a href="page1.html">Page 1</a></li>
<li id="Home"><a href="index.html">Home</a></li>
</ul>
<div id="icon"><img src="HelmetIcon.png" alt="Helmet_Icon" class="img-thumbnail" class="rounded" width="250"></div>
<form class="haha">
<div class="form-group">
<input type="email" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp" placeholder="Enter email">
</div>
<div class="form-group">
<input type="password" class="form-control" id="exampleInputPassword1" placeholder="Password">
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
</body>
</html>