-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgoogle.html
55 lines (48 loc) · 2.11 KB
/
google.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
<!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">
<title>Google Sign In Page</title>
<link rel="icon" type="image/" href="https://www.netmeds.com/assets/global/apple-touch-icon-48x48.png">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/14e21b1c67.js" crossorigin="anonymous" defer></script>
<link rel="stylesheet" href="CSS/google.css">
<link rel="stylesheet" href="CSS/navbar-footer.css">
</head>
<body>
<!-- Navbar -->
<nav id="nav1"></nav>
<nav id="nav2"></nav>
<main>
<div class="login">
<div class="login_img">
<img src="https://www.netmeds.com/images/cms/wysiwyg/cms/1588773798_sign-in-banner-new.png" alt="" />
</div>
<div class="content">
<h2>Create Account</h2>
<label for="email">EMAIL ID</label>
<input type="email" id="email" placeholder="enter your email address" required>
<label for="fname">FIRST NAME</label>
<input type="fname" id="fname" placeholder="enter your first name" required>
<label for="lname">LAST NAME</label>
<input type="lname" id="lname" placeholder="enter your last name" required>
<label for="otp">ENTER OTP</label>
<input type="otp" id="otp" placeholder="enter otp" required>
<button>VERIFY</button>
</div>
</div>
<div class="copy_right">
<p>By continuing you agree to our Terms of service
and Privacy & Legal Policy.</p>
</div>
</main>
<!-- footer -->
<footer></footer>
<script src="JS/navbar-footer.js" type="module"></script>
<script src="JS/google.js"></script>
</body>
</html>