-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
66 lines (65 loc) · 2.35 KB
/
index.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
<!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">
<!-- Google Fonts -->
<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=Oswald:wght@300;400&display=swap" rel="stylesheet">
<!-- Google material symbols -->
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined" rel="stylesheet" />
<!-- Stylesheet -->
<link rel="stylesheet" href="styles.css">
<title>Sign-up</title>
</head>
<body>
<section class="sign-up">
<div class="bg-video">
<div class="content">
<h1>
Welcome To <br>
Steel City
</h1>
<button class="btn" id="form-open-btn">
Sign Up
</button>
</div>
<video src="assets/bg.mp4" autoplay loop muted></video>
</div>
<div class="sign-up-form">
<form action="">
<div class="input-wrap">
<label for="name">Full Name</label>
<input type="text" name="name" required>
</div>
<div class="input-wrap">
<label for="mail">Email Address</label>
<input type="email" name="mail" required>
</div>
<div class="age">
<small>I am over 13 years of age</small>
<div>
<small>No</small>
<div class="switch">
<input type="checkbox" name="" id="">
<span class="slider"></span>
</div>
<small>Yes</small>
</div>
</div>
<button type="submit" class="btn">
Sign Me Up!
</button>
</form>
<button class="close">
<span class="material-symbols-outlined">
close
</span>
</button>
</div>
</section>
<script src="main.js"></script>
</body>
</html>