forked from aaryanporwal/littlelink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
210 lines (163 loc) · 9.83 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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="register.css">
<!-- Page Information
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta charset="utf-8" />
<title>OSSDEVS</title>
<!-- Primary Meta Tags -->
<title>OSSDEVS</title>
<meta name="title" content="OSSDEVS">
<meta name="description" content="The Open Source Developers Community of JIIT, Noida.">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://ossdevs.com/">
<meta property="og:title" content="OSSDEVS">
<meta property="og:description" content="The Open Source Developers Community of JIIT, Noida.">
<meta property="og:image"
content="https://cdn.discordapp.com/attachments/791012601190416417/927709380806332416/unknown.png">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://ossdevs.com/">
<meta property="twitter:title" content="OSSDEVS">
<meta property="twitter:description" content="The Open Source Developers Community of JIIT, Noida.">
<meta property="twitter:image"
content="https://cdn.discordapp.com/attachments/791012601190416417/927709380806332416/unknown.png">
<!-- Mobile Specific Metas
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- FONT
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,600,700,800&display=swap" rel="stylesheet" />
<!-- CSS
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="stylesheet" href="css/normalize.css" />
<link rel="stylesheet" href="css/skeleton-light.css" />
<link rel="stylesheet" href="css/brands.css" />
<!-- Favicon
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="icon" type="image/png" href="images/avatar.png" />
</head>
<body>
<!-- Primary Page Layout
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<div class="container">
<div class="row">
<div class="column" style="margin-top: 10%">
<!--
## Getting Started with LittleLink
This page has been built with every pre-designed button available in LittleLink by default. You can rearrange and delete as needed.
You can add your own brand or others brands you may need in the `css/brands.css` file.
Edit the "Your Image Here" section to add your own personal branding, like a picture of yourself or your brand logo!
Edit the "Your Name" section to change the page heading. You can use something like your name, your social handle, or your brand name.
Edit the "Short Bio" section tell users about yourself or your brand.
-->
<!-- Your Image Here -->
<div class="joos-logo">
<img height="70vw" src="https://cloud-j0gpa8nno-hack-club-bot.vercel.app/0jodcxosdc.png"
alt="JODC OSDC Logo" />
</div>
<br>
<!-- <div class="meetup">
<h3 class="topic"><span class="meetup-topic">Meetup:</span> Under the Hood of a Compilation : An Introduction to the LLVM Compiler which Powers Languages like C/C++, Rust, Fortran, Julia, Swift and more</h2>
<h3>Date: 24 August 2022</h3>
<h3>Time: 10:00 P.M.</h3>
<a href="https://meet.jit.si/OSDCMeetup" class="a-glow">Jitsi Meet</a>
<br>
<a href="https://docs.google.com/forms/d/e/1FAIpQLSdIlLErvyFnrBSGSKoEXw1crk3ucVDM1Pud3-6dme-Lnz1FUw/viewform?usp=sf_link" class="a-glow">Invite Form</a>
</div> -->
<!-- Short Bio
<p>
LittleLink is an open source DIY alternative to services like
<a href="https://linktr.ee" target="_blank" rel="noopener"
>Linktree</a
>
and
<a href="https://many.link" target="_blank" rel="noopener"
>many.link</a
>. LittleLink was built using
<a href="http://www.getskeleton.com" target="_blank" rel="noopener"
>Skeleton</a
>, a dead simple, responsive boilerplate—we’ve just created some
branded buttons and stripped out the things you won't need. 😊
</p> -->
<!--
## Breaking down <a> attributes:
1.) class="button button-default" | The first "button" here is telling this <a> tag that it should make this element a button and applies the default styling in `css/brands.css`.
The second portion, button-default, is declaring the specific brand style you would like to apply. Here we're applying the "default" style and color.
If you want to make this button to use the brand colors for Discord, just change "button-default" to "button-discord". Brands are found in `css/brands.css`. You can always edit & add your own there.
2.) Replace the # in href="#" with the desired target URL for the button.
3.) target="_blank" | This attribute opens links in a new tab. Remove this attribute to prevent links from opening in a new tab.
4.) rel="noopener" | This attribute instructs the browser to navigate to the target resource without granting the new browsing context access to the document that opened it.
This is especially useful when opening untrusted links. https://developer.mozilla.org/en-US/docs/Web/HTML/Link_types/noopener
## Breaking down the <img> attributes:
1.) class="icon" | This class is telling the <img> tag that it should use the styling for icons found in `css/brands.css`.
2.) src="icons/[icon_name].svg" | This defines the icon you would like to display from the icons/ folder. For example, you can change this to src="icons/discord.svg" to use the Discord icon.
Add your own 24x24 icons to the "icons" folder to reference them. We recommend providing a SVG.
3.) alt="Example Logo" | This alt attribute helps provides alternate text for an image, this can assist users who use screen readers.
-->
<div class="all-buttons">
<h3>COMMON SOCIALS</h3>
<!-- Discord JODC -->
<a class="button button-discord button-span-both" href="https://discord.gg/Yaq3eNBrwW" target="_blank"
rel="noopener"><img class="icon" src="icons/discord.svg" alt="Discord Logo" />Discord</a>
<br />
<!-- Telegram OSDC -->
<a class="button button-telegram button-span-both" href="https://t.me/jiitosdc" target="_blank"
rel="noopener"><img class="icon" src="icons/telegram.svg" alt="Telegram Logo" />Telegram</a>
<br />
<!-- Instagram OSDC -->
<a class="button button-instagram button-span-both" href="https://instagram.com/osdcjiit" target="_blank"
rel="noopener">
<img class="icon" src="icons/instagram.svg" alt="Instagram Logo" />Instagram</a>
<div class="button-group">
<h3>JODC</h3>
<!-- Github -->
<a class="button button-github" href="https://github.com/JIITODC" target="_blank" rel="noopener"><img
class="icon" src="icons/github.svg" alt="GitHub Logo" />GitHub</a>
<br />
<!-- Telegram -->
<a class="button button-telegram" href="https://t.me/jiitodc" target="_blank" rel="noopener"><img
class="icon" src="icons/telegram.svg" alt="Telegram Logo" />Telegram</a>
<br />
<!-- Twitter -->
<a class="button button-twitter" href="https://twitter.com/JIITODC" target="_blank" rel="noopener"><img
class="icon" src="icons/twitter.svg" alt="Twitter Logo" />Twitter</a>
<br />
<!-- Instagram -->
<!-- <a class="button button-instagram" href="https://instagram.com/osdcjiit" target="_blank" rel="noopener">
<img class="icon" src="icons/instagram.svg" alt="Instagram Logo">Instagram</a>
<br> -->
</div>
<div class="button-group">
<!-- Github -->
<h3>OSDC</h3>
<a class="button button-github" href="https://github.com/osdc/" target="_blank" rel="noopener"><img
class="icon" src="icons/github.svg" alt="GitHub Logo" />GitHub</a>
<br />
<!-- Discord -->
<a class="button button-discord" href="https://discord.gg/vfhyHW5BkJ" target="_blank" rel="noopener"><img
class="icon" src="icons/discord.svg" alt="Discord Logo" />Discord</a>
<br />
<!-- Twitter -->
<a class="button button-twitter" href="https://twitter.com/osdcjiit" target="_blank" rel="noopener"><img
class="icon" src="icons/twitter.svg" alt="Twitter Logo" />Twitter</a>
<br />
</div>
</div>
<br />
<br />
<p>
Built with
<a href="https://littlelink.io" target="_blank" rel="noopener">LittleLink</a>
❤️
</p>
</div>
</div>
</div>
</div>
<!-- End Document
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
</body>
</html>