-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtask6JS.html
60 lines (57 loc) · 2.06 KB
/
task6JS.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
49
50
51
52
53
54
55
56
57
58
59
60
<!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">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<title>Instagram Login</title>
<style>
h1 {
font-family: playfair-display;
font-style: italic;
}
</style>
</head>
<body>
<center>
<form class="form">
<table class="table w-25">
<tr>
<td>
<h1 class="text-center">Instagram</h1>
</td>
</tr>
<tr>
<td>
<input class="form-control mb-3" type="text" placeholder="Username">
</td>
</tr>
<tr>
<td>
<input class="form-control mb-3" type="password" placeholder="Password">
</td>
</tr>
<tr>
<td class="text-center">
<button type="button" class="btn btn-primary btn-block mb-3">Log In</button>
</td>
</tr>
<tr>
<td>
<input type="checkbox" class="form-check-input" id="exampleCheck1">
<label class="form-check-label" for="exampleCheck1">Remember Me</label>
<label class="text-right ml-5"><a class="ml-4" href="https://www.example.com">Forgot Password?</a></label>
</td>
</tr>
<tr>
<td class="text-center">
Don't have an account! <a href="https://www.google.com">Sign up here</a>
</td>
</tr>
</table>
</form>
</center>
</body>
</html>