-
Notifications
You must be signed in to change notification settings - Fork 0
/
join_us.html
123 lines (123 loc) · 4.24 KB
/
join_us.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!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 rel="preconnect" href="https://fonts.gstatic.com" />
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.15.3/css/all.css"
integrity="sha384-SZXxX4whJ79/gErwcOYf+zWLeJdY/qpuqC4cAa9rOGUstPomtqpuNWT9wdPEn2fk"
crossorigin="anonymous"
/>
<link
href="https://fonts.googleapis.com/css2?family=Arimo&family=Bitter:ital@1&family=Inter&family=Lora:ital,wght@1,500&family=Roboto+Slab:wght@300&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/style.css" />
<link
rel="stylesheet"
media="screen and (max-width: 768px)"
href="css/mobile.css"
/>
<title>Welcome! Presenting You HORIMIYA</title>
</head>
<body>
<nav id="main-nav">
<div class="container">
<h1 class="heading">Horimiya</h1>
<div class="social">
<a href="http://facebook.com" target="_blank"
><i class="fab fa-facebook fa-2x"></i
></a>
<a href="http://twitter.com" target="_blank"
><i class="fab fa-twitter fa-2x"></i
></a>
<a href="http://instagram.com" target="_blank"
><i class="fab fa-instagram fa-2x"></i
></a>
<a href="http://youtube.com" target="_blank"
><i class="fab fa-youtube fa-2x"></i
></a>
</div>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="characters.html">Characters</a></li>
<li><a href="join_us.html">JoinUs</a></li>
</ul>
</div>
</nav>
<header id="showcase">
<div id="container">
<h3>
“You can have the bad days so you can love the good days even more.”
<small class="name">~Miyamura Izumi</small>
</h3>
</div>
</header>
<section id="join-form" class="py-3">
<div class="container">
<h1 class="join">Join Us</h1>
<p class="para">Fill up and be one of us</p>
<form method="POST" data-netlify="true" data-netlify-recaptcha="true">
<div class="form-group">
<label for="name">Name</label>
<input type="text" name="name" id="name" />
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="email" name="email" id="email" />
</div>
<div class="form-group">
<label for="sex">Gender</label>
<select name="sex" id="sex">
<option value="male">Male</option>
<option value="female">Female</option>
<option value="other">Other</option>
</select>
</div>
<div class="form-group">
<label for="birthdate">Birthdate</label>
<input type="date" name="birthdate" id="birthdate" />
</div>
<div class="form-group">
<label for="message">Anime Favourites</label>
<textarea name="message" id="message"></textarea>
</div>
<div data-netlify-recaptcha="true"></div>
<div style="margin: 2rem"></div>
<button type="submit" class="btn-2">Submit</button>
</form>
</div>
</section>
<footer id="main-footer" class="py-2">
<div class="container footer-container">
<div>
<h3>Email Us</h3>
<form>
<input type="message" placeholder="Type your text" />
<input type="submit" value="Send" class="btn-1" />
</form>
</div>
<div>
<h3>Site Links</h3>
<ul class="list">
<li><a href="#">Help & Support</a></li>
<li><a href="#">Privacy Policy</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
<div>
<h2>Join Our Club</h2>
<p>Show some Love by Joining us!</p>
<a href="join_us.html" class="btn-2">Join Now</a>
</div>
<div>
<p>Copyright © 2021, All Rights Reserved</p>
</div>
</div>
</footer>
</body>
</html>