-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathA1.html
More file actions
70 lines (40 loc) · 1.53 KB
/
A1.html
File metadata and controls
70 lines (40 loc) · 1.53 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width , initial-scale=1">
<title>Assing1</title>
<!-- css file link -->
<link rel="stylesheet" type="text/css" href="A1styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
</head>
<body>
<section>
<div class="imgBx">
<img src="https://images.unsplash.com/photo-1507525428034-b723cf961d3e?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1953&q=80">
</div>
<div class="contentBx">
<div class="formBx">
<h1>Welcome back!!</h1>
<h2>Please Login to your account.</h2>
<form action="tableA1.html">
<div class="inputBx">
<input type="text" placeholder="Username">
</div>
<div class="inputBx">
<input type="Password" placeholder="Password">
</div>
<div class="remember">
<label> <input type="checkbox" name=""> Remember Me </label>
<span class="forget">
<a href="">Forget Password?</a>
</span>
</div>
<input type="submit" value="Login" class="btn">
</form>
<h3>Terms Of Use. Privacy policy </h3>
</div>
</div>
</section>
</body>
</html>