-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjoinus.html
93 lines (77 loc) · 3.32 KB
/
joinus.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<meta name="description" content="Annual charity show">
<meta name="keywords" content="Animal charity, raise funds for animals">
<meta name="author" content="Wakil Ahmed">
<title>ACS | Join Us Now</title>
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<header>
<div class="container">
<div id="branding">
<h1><span class="highlight">Annual</span> Charity Show</h1>
</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="charity.html">Charity Events</a></li>
<li><a href="fund.html">Fund Raising</a><ul>
<li><a href="#">Donate Us</a></li>
<li><a href="#">Our Shelters</a></li>
</ul>
</li>
<li><a href="community.html">Community</a></li>
<li><a href="news.html">News & Reviews</a></li>
<li><a href="tools.html">Tools and Calculators</a></li>
<li class="current"><a href="joinus.html">Join Us Now</a></li>
</ul>
</nav>
</div>
</header>
<section id="joinnews">
<div class="divnews">
<h2>Sign In Now</h2><br>
<form>
<input type="email" placeholder="Enter Email..." required>
<input type="password" placeholder="Enter Password" required>
<button type="submit">Sign In</button>
</form>
</div>
</section>
<section class="newsandsign">
<div class="subscribenews">
<h3>Subscribe To Our Monthly Newsletter</h3>
<form>
<input type="email" placeholder="Enter your Email" required>
<button type="submit">Subscribe</button><br>
</form>
</div>
<div class="newaccount">
<h3>Create New Account</h3>
<form>
<p>Name</p>
<input type="text" name="name" placeholder="Enter Your Name" required>
<p>Email/Mobile Number</p>
<input type="text" name="email/phone" placeholder="Email/Mobile Number" required>
<p>Password</p>
<input type="password" name="password" placeholder="Enter Your Password" required>
<p>Date of Birth</p>
<input type="date" name="user_dob" required><br>
<p>Gender</p>
<input type="radio" name="gender" value="M" required>MALE
<input type="radio" name="gender" value="F" required>FEMALE <br>
<p class="chkbx"><input name="checkbox" type="checkbox" value="agree" > Interested to volunteer at the nearest shelter </p>
<input type="submit" value="Sign Up">
<a href="#">Sign Up Using Social Media</a>
</form>
</div>
</section>
<footer>
<p>Annual Charity Show, Copyright ©2018</p>
</footer>
</body>
</html>