forked from Code-Social/official-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
93 lines (81 loc) · 3.93 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Code Social | Home</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles.css" type="text/css">
<script src="script.js" defer></script>
</head>
<body>
<nav class="navbar">
<a href="index.html"><img src="C:\Users\Ananya\OneDrive\Documents\GitHub\official-website\images\logo.png"
class="logo"></a>
<span class="website-name">Code Social</span>
<ul>
<li>
<a href="#">Live Events</a>
<ul class="dropdown">
<li><a href="#">Why don't you react?</a></li>
</ul>
</li>
<!-- Dropdown -->
<li>
<a href="#">Join our Community</a>
<ul class="dropdown">
<li><a href="#"> Whatsapp</a></li>
<li><a href="#">Discord</a></li>
</ul>
<li class="hamburger-menu">
<a href="javascript:void(0);" class="toggle-button">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</a>
<ul class="dropdown">
<li><a href="#">Meet Our Team</a></li>
<li><a href="#">Join Our Team</a></li>
<li><a href="#">Contact Us</a></li>
<li><a href="#">Follow Us</a></li>
</ul>
</li>
</li>
</ul>
</nav>
<section class="about-community">
<h2>About Community</h2>
<p>
Code Social Community is a learning-focused community dedicated to providing individuals with resources,
opportunities to learn, grow, and develop their skills in various technologies. The community helps
individuals to explore their interests, expand their knowledge, and connect with like-minded people.
At Code Social Community, members have access to a wealth of resources and learning opportunities, including
free learning sessions, mentorship programs, and peer-to-peer learning sessions. The community also provides
opportunities for members to network and connect with others in the tech industry.
In addition to its learning and networking opportunities, Code Social Community also serves as a hub for
resources, tools, and other materials that can help members enhance their skills and stay up-to-date with
the latest trends and best practices in the tech industry.
Whether you are just starting out in your career or are a seasoned professional looking to expand your
knowledge and skills, this community offers something for everyone. With its focus on hands-on learning,
mentorship, and networking opportunities, Code Social Community is an excellent place to connect with
like-minded individuals, build your skills, and take your career to the next level.
</p>
<!-- Social Media Icons -->
<div class="social-icons">
<a href="https://wa.me/your-whatsapp-number" target="_blank">
<img src="C:\Users\Ananya\OneDrive\Documents\GitHub\official-website\images\whatsapp-icon.png"
alt="WhatsApp">
</a>
<a href="https://discord.gg/MSTNyRSPYW" target="_blank">
<img src="C:\Users\Ananya\OneDrive\Documents\GitHub\official-website\images\discord-icon.png"
alt="Discord">
</a>
<a href="https://www.linkedin.com/company/code-social/" target="_blank">
<img src="C:\Users\Ananya\OneDrive\Documents\GitHub\official-website\images\linkedin-icon.png"
alt="LinkedIn">
</a>
</div>
</section>
<footer>
</footer>
</body>
</html>