-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgmail_ac.html
85 lines (78 loc) · 2.03 KB
/
gmail_ac.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<head>
<title>Log In</title>
<style>
h2{
text-align: center;
padding-right: 40px;
}
.login{
color: white;
width: 300px;
padding: 10px;
position: absolute;
font-size: 20px;
top: 10%;
right: 50px;
line-height: 50px;
border-radius: 10px;
background: transparent;
text-align: left;
vertical-align: middle;
border:blue solid 2px;
margin-right: 500px;
margin-top: 50px;
}
input{
height: 30px;
width: 85%;
padding-left: 10px;
border-radius: 8px;
}
button{
margin: 13px;
width:70px;
height: 30px;
padding: 5px;
float: left;
vertical-align: middle;
font-size: 15px;
font-family:Georgia, 'Times New Roman', Times, serif;
border-radius: 10px;
background-color: rgb(67, 185, 67);
color: white;
}
input:focus {
background-color: rgba(70, 130, 180, 0.35);
}
#myVideo{
position: fixed;
width: auto;
height: auto;
}
a{
color: white;
font-size: 14px;
}
</style>
</head>
<body>
<video autoplay muted loop id="myVideo">
<source src="Background.mp4" type="video/mp4">
Your browser does not support HTML5 video.
</video>
<div class="login">
<h2>Create Gmail A/c</h2>
<form action="Home.html">
<label for="u_name">Username: </label><br>
<input type="text" name="u_name" placeholder="Enter Your Full Name" required><br>
<label for="phone">Phone No.: </label><br>
<input type="text" name="phone" placeholder="Enter your Contact Number" required><br>
<label for="email">Email Id: </label><br>
<input type="text" name="email" placeholder="Enter your gmail id" required><br>
<button>Reset</button>
<button>Submit</button>
</form>
</div>
</body>
</html>