-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathindex.html
176 lines (151 loc) · 6.13 KB
/
index.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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
<!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>Women's TechHub</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@500;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://unpkg.com/boxicons@latest/css/boxicons.min.css">
<link href="https://cdn.jsdelivr.net/npm/remixicon@2.5.0/fonts/remixicon.css" rel="stylesheet">
<link rel="Stylesheet" href="Stylesheet/style.css">
<link rel="Stylesheet" href="Stylesheet/footer.css">
<link rel="stylesheet" href="Stylesheet/home.css">
<link rel="stylesheet" href="Stylesheet/about.css">
<link rel="stylesheet" href="Stylesheet/our impact.css">
<link rel="apple-touch-icon" sizes="180x180" href="/favicon_io/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon_io/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon_io/favicon-16x16.png">
<link rel="manifest" href="/favicon_io/site.webmanifest">
</head>
<body>
<header>
<a href="/index.html" class="logo">
<img src="/images/logo-final.png" alt="" id="nav-logo">
<span>WOMEN'S TECH HUB</span>
</a>
<ul class="navbar">
<li><a href="/index.html">Home</a></li>
<li><a href="/about.html">About</a></li>
<li><a href="/member.html">Members</a></li>
<li><a href="/events.html">Events</a></li>
<li><a href="#">Newsroom</a></li>
</ul>
<div class="main">
<!-- <a href="#" class="user"><i class="ri-user-fill"></i><span>Sign in</span></i></a>
<a href="#">Register</a> -->
<div class="bx bx-menu" id="menu-icon"></div>
</div>
</div>
</header>
<br><br><br>
<section class="home">
<div class="home-contents">
<div class="home-content-title-section">
<div class="home-title">
<h1 class="home-title-main">
<span class="women">
Women's
</span>
<span class="tech-hub">Tech Hub</span><br>
<span class="home-community">Community</span>
</h1>
<h2 class="home-title-quote">
Be a force for good
</h2>
</div>
<div class="home-buttons">
<button class="explore-more">
Explore More
</button>
<button class="explore-more join-community" , onclick="window.open('https://discord.gg/e2GpcYfNRN')">
Join Community
</button>
</div>
</div>
<div class="home-content-img-section">
<div class="home-img-container">
<img src="./images/home-img.png" alt="img" id="home-img">
</div>
</div>
</div>
</section>
<!--footer starts here-->
<footer>
<div class="footer">
<div class="footer-items">
<div class="footer-organization">
<span id="footer-heading">Organization</span>
<br> <br> <br>
<p><a class="footer-organization-content" target="_blank" href="./about.html">About Us</a></p><br>
<p><a class="footer-organization-content" target="_blank" href="#">Mission</a></p><br>
<p><a class="footer-organization-content" target="_blank" href="#">History</a></p>
</div>
<div class="footer-community">
<span id="footer-heading">Community</span>
<br> <br> <br>
<p><a class="footer-organization-content" target="_blank" href="">Blog</a></p> <br>
<p><a class="footer-organization-content" target="_blank" href="./events.html">Events</a></p> <br>
<p><a class="footer-organization-content" target="_blank" href="#">Webinars</a></p>
</div>
<div class="footer-socials">
<span id="footer-heading">Socials</span>
<br> <br> <br>
<p><a class="footer-organization-content" target="_blank"
href="https://www.linkedin.com/in/women-s-tech-hub-129635261/">LinkedIn</a></p> <br>
<p><a class="footer-organization-content" target="_blank" href="https://twitter.com/womentechhub9">Twitter</a>
</p> <br>
<p><a class="footer-organization-content" target="_blank" href="https://discord.gg/e2GpcYfNRN">Discord</a></p>
</div>
</div>
<!-- contact form starts here -->
<h2 class="Contact-us-form">Contact Form</h2>
<form action="https://twitter.com/womentechhub9" class="contactForm">
<label for="fname">Name:</label>
<input type="text" placeholder="Your name..." id="fname" name="firstName" class="inputItem">
<label for="email">Email:</label>
<input type="email" placeholder="Enter your email..." id="email" name="email" class="inputItem">
<label for="cname">Country:</label>
<input type="text" placeholder="Enter country name..." id="cname" name="countryName" class="inputItem">
<label for="subject">Subject:</label>
<textarea name="subject" id="subject" placeholder="Write something..." cols="30" rows="5"
class="inputItem"></textarea>
<button type="submit" value="submit" class="submitButton">Submit</button>
</form>
</div>
<br><br><br>
<center>
<hr class="footer-hr">
</center>
<br><br>
<h2>
<center>Women's Tech Hub</center>
</h2>
<br>
<p>
<center>
<a href="https://www.linkedin.com/in/women-s-tech-hub-129635261/">
<img src="images/linkedin.png" alt="linkedin" width="20px" height="20px">
</a>
<a href="https://twitter.com/womentechhub9">
<img src="images/twitter.png" alt="twitter" width="20px" height="20px">
</a>
</center>
</p>
<br><br>
<center>
<hr class="footer-hr">
</center>
<br><br>
<h4>
<center>© Copyright <strong>
<h3><br>Women's Tech Hub</h3><br> All rights reserved.
</strong></center>
</h4>
</footer>
<script type="text/javascript" src="index.js"></script>
</body>
</html>