forked from aviiciii/linktree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
115 lines (89 loc) · 3.43 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SDC | Panimalar</title>
<link rel="stylesheet" href="style.css">
<!-- favicon normal-->
<link rel="icon" href="img/favicon.png" type="image/jpg" >
</head>
<body>
<section id="about" class="about">
<div class="logo">
<img class="logo" src="img/logo.jpeg" alt="logo">
</div>
<div class="name">
<h1>student development community</h1>
</div>
<div class="description">
<p>hey!</p>
</div>
<div class="socials">
<ul class="socials-ul">
<!-- linkedin -->
<li class="socials-li">
<a class="socials-a" href="https://www.linkedin.com/company/sdc-panimalar/" target="_blank">
<img class="socials-img" width="50" height="50" src="https://img.icons8.com/ios/50/linkedin-2--v1.png" alt="linkedin--v1"/>
</a>
</li>
<!-- instagram -->
<li class="socials-li">
<a class="socials-a" href="https://www.instagram.com/sdc_panimalar/" target="_blank">
<img class="socials-img" width="50" height="50" src="https://img.icons8.com/ios/50/instagram.png" alt="instagram-new--v1"/>
</a>
</li>
<!-- github -->
<li class="socials-li">
<a class="socials-a" href="https://github.com/enterprises/panimalar" target="_blank">
<img class="socials-img" width="50" height="50" src="https://img.icons8.com/ios/50/github--v1.png" alt="github--v1"/>
</a>
</li>
<!-- add others here -->
</ul>
</div>
</section>
<section id="links">
<div class="link-container">
<div class="link-header">
<h2>events</h2>
</div>
<!-- Start of links -->
<div class="link-list">
<a class="link-a" href="https://pechacks.org/" target="_blank">
PEC Hacks - Hackathon
</a>
</div>
<!-- Start of links -->
<div class="link-list">
<a class="link-a" href="https://chat.whatsapp.com/CG3ni2opMFPGZTDiG45kP0" target="_blank">
Join Whatsapp Community for PEC Hacks
</a>
</div>
</div>
<!-- Start of a Tab -->
<div class="link-container">
<div class="link-header">
<h2>club websites</h2>
</div>
<!-- Start of links -->
<div class="link-list">
<a class="link-a" href="https://coding.psdc.org.in/" target="_blank">
The Coding Society
</a>
<a class="link-a" href="https://career.psdc.org.in/" target="_blank">
Career in Tech
</a>
</div>
</div>
<!-- End of a Tab -->
</section>
<section id="footer">
<footer>
<p>developed by <span id="tcs">the coding society</span></p>
</footer>
</section>
<!-- scripts -->
<script src="script.js"></script>
</body>
</html>