-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
119 lines (81 loc) · 3.45 KB
/
signup.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
<!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">
<title>Sign Up</title>
<!-- font awesome cdn link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/css/all.min.css">
<!-- custom css file link -->
<link rel="stylesheet" href="jsm.css">
</head>
<body>
<header class="header">
<section class="flex">
<a href="index.html" class="logo">JSM</a>
<div class="icons">
<div id="menu-btn" class="fas fa-bars"></div>
<div id="search-btn" class="fas fa-search"></div>
<div id="user-btn" class="fas fa-user"></div>
<div id="toggle-btn" class="fas fa-sun"></div>
</div>
<div class="profile">
<a href="#" class="option-btn">register</a>
</div>
</div>
</section>
</header>
<div class="side-bar">
<div id="close-btn">
<i class="fas fa-times"></i>
</div>
<nav class="navbar">
<div class="nav-image"><img src="images/student5.png" width="250" height="200" alt="JSM"></div>
<a href="index.html"><i class="fas fa-home"></i><span>Home</span></a>
<a href="about.html"><i class="fas fa-address-card"></i><span>About us</span></a>
<a href="courses.html"><i class="fas fa-graduation-cap"></i><span>Courses</span></a>
<a href="contact.html"><i class="fas fa-headset"></i><span>Contact us</span></a>
</nav>
</div>
<section class="teachers">
<h1 class="heading">Sign Up </h1>
<div class="box-container">
<div class="box offer">
<h3>Student</h3>
<p>Ready to level up? Participating in JSM Courses will help you grow as an individual.</p>
<p>You'll gain valuable skills. Plus, you'll have the chance to network with like-minded people and build lasting friendships.</p>
<p>Sign up now and invest in your future</p>
<a href="stu-signup.html" class="inline-btn">Register</a>
</div>
<div class="box offer">
<h3>Volunteer</h3>
<p>Imagine the power of your actions.</p>
<p>By joining us, You can directly contribute and impact the life of many.</p>
<p>Your involvement will make a real difference! Don't miss this opportunity to be part of something truly meaningful.</p>
<p>Sign up today!</p>
<a href="vol-signup.html" class="inline-btn">Register</a>
</div>
</div>
</section>
<footer class="footer">
<div class="footer-container">
<div class="policy">
<p>Privacy Policy</p> <br>
<p>User Agreement</p> <br>
<p>Cookie Policy</p> <br>
<p>Copyright Policy</p>
</div>
<div class="more">
<span>Download App for better experience.</span> <br> <br>
<span>Listen to our Podcast for audio versions.</span> <br> <br>
<span>Community Guidelines.</span> <br><br>
<span>Help Center.</span>
</div>
</div>
JSM © 2024 by <span>LearnMakers Team</span>
</footer>
<!-- custom js file link -->
<script src="jsm.js"></script>
</body>
</html>