-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathname.html
104 lines (98 loc) · 2.65 KB
/
name.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!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 href="https://fonts.googleapis.com/css2?family=Baloo+Bhaijaan+2&family=Dancing+Script&family=Fira+Sans+Condensed&family=Satisfy&display=swap" rel="stylesheet">
<style>
*{
margin: 0;
padding: 0;
}
body{
font-family: 'Fira Sans Condensed', sans-serif;
}
#container{
text-align: center;
}
h5{
padding-top: 50px;
padding-bottom: 28px;
font-weight: 500;
}
h3{
font-weight: 700;
font-size: 25px;
}
.h3{
padding-bottom: 40px;
}
p{
letter-spacing: 0.1px;
padding-bottom: 50px;
}
#text{
width: 500px;
height: 30px;
border-top: none;
border-left: none;
border-right: none;
margin-bottom: 20px;
}
#email{
width: 500px;
height: 30px;
border-top: none;
border-left: none;
border-right: none;
margin-bottom: 35px;
}
#button{
width: 100px;
height: 30px;
border-radius: 200px;
background-color: rgba(211, 211, 211, 0.986);
margin-bottom: 35px;
}
#or{
padding-bottom: 30px;
}
#btn{
width: 450px;
background: none;
height: 30px;
border-radius: 200px;
background-color: rgba(211, 211, 211, 0.986);
margin-bottom: 35px;
}
#container a {
text-decoration: none;
}
#container a button {
cursor: pointer;
}
</style>
<title>Document</title>
</head>
<body>
<div id="container">
<h5>Sign in/Sign up</h5>
<h3>WELCOME,</h3>
<h3 class="h3">Thankyou for being with us!</h3>
<p>please let us know you more.</p>
<input type="text" id = "text" placeholder="First Name">
<br>
<input type="email" id="email" placeholder="Email Address">
<br>
<button id="button" onclick="goToHome()">Submit</button>
<p id="or">or</p>
<a href="index.html"><button id="btn" onclick="goToHome()">Skip,Ask Me Later</button></a>
</div>
</body>
<script>
function goToHome(){
window.location = "menu.html"
}
</script>
</html>