-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.html
More file actions
103 lines (102 loc) · 2.6 KB
/
example.html
File metadata and controls
103 lines (102 loc) · 2.6 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<style>
body{
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
margin: 0;
background-color: #f7f7f7;
}
.form-joinin{
width: 70%;
max-width: 400px;
margin: 0 auto;
background-color: #fff;
padding: 20px;
border-radius: 10px;
text-align: center;
}
.form-control{
width: 90%;
padding: 10px;
margin-bottom: 10px;
border: 1px solid #ccc;
border-radius: 5px;
font-size: 16px;
}
.form-check{
display: flex;
align-items: center;
justify-content: flex-start;
margin-bottom: 10px;
}
.form-check-input{
margin-right: 10px;
}
.form-check-label{
font-size: 14px;
color: #555;
}
label{
display: block;
margin-top: 5px;
margin-bottom: 10px;
text-align: left;
font-size: 14px;
color: #555;
}
button{
width: 70%;
height: 50px;
padding: 10px;
background-color: orange;
color: black;
border: none;
margin-top: 15px;
border-radius: 5px;
font-size: 16px;
cursor: pointer;
}
button:hover{
background-color: red;
}
.basketball{
width: 100px;
height: 100px;
margin-bottom: 20px;
}
</style>
<body>
<main class="form-joinin">
<form>
<img class="basketball" src="basketball.png" alt="" width="72" height="57">
<h1>Please join in!</h1>
<div class="form">
<label for="floatingEmail">Email address</label>
<input type="email" class="form-control" id="floatingEmail" placeholder="[email protected]">
</div>
<div class="form">
<label for="floatingPassword">Password</label>
<input type="password" class="form-control" id="floatingPassword" placeholder="Password">
</div>
<div class="form-check">
<input class="form-check-input" type="checkbox" value="remember-me" id="flexCheckDefault">
<label class="form-check-label" for="flexCheckDefault">
Remember me
</label>
</div>
<button class="" type="submit">Join in</button>
<p>
<a href="index.html">Go back</a>.
</p>
</form>
</main>
</body>
</html>