forked from cr2007/links.hwtech.club
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
81 lines (63 loc) · 2.35 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
<!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">
<link rel="stylesheet" href="style.css"> <!-- CSS Link -->
<title>HW Tech Club Links</title>
</head>
<body>
<!-- Main Title -->\
<a href="https://hwtech.club/" target="_blank">
<img src="images/CW.svg" alt='HW Tech Club Logo' style="float: left; width: 10em; margin: 15px;" class="Logo">
</a>
<br>
<h1 class="Title">The Links</h1>
<!-- Tech Club Website-->
<a href="https://hwtech.club/" target="_blank">
<button type="button" class="Website" title="hwtech.club">HW Tech Club Website</button>
</a>
<br>
<br>
<!-- YouTube Button -->
<a href="https://www.youtube.com/channel/UClt78vXoYl1N57pNOaaIvEw" target="_blank">
<button type="button" title="HW Tech Club on YT">YouTube Channel</button>
</a>
<br>
<br>
<!-- Instagram Button -->
<a href="https://www.instagram.com/hwtechclub/" target="_blank">
<button type="button" title="@hwtechclub">Instagram</button>
</a>
<br>
<br>
<button class="accordion">Sign-Up Forms </button>
<div class="panel">
<br>
<!-- HW Tech Club Sign-Up Button -->
<a href="https://forms.office.com/r/1mvyJ7KVxr" target="_blank">
<button type="button" title="Fill in the form to join the Tech Club" class="TechClubSignUp">HW Tech Club - Sign-Up Form</button>
</a>
<br>
<br>
<!-- GDSC @ HWU Sign-Up Button -->
<a href="https://docs.google.com/forms/d/e/1FAIpQLSdtbgridRahSUw5-EE_q1CbrMsorWUQVg5ArKnH80beAeJ7OQ/viewform" target="_blank">
<button type="button" title="Fill in the form to join Google Developer Student Clubs @ HWU" class="GDSC">GDSC @ HWU - Sign-Up Form</button>
</a>
</div>
<br>
<br>
<!-- Flutter Dev Series (YouTube) Button-->
<a href="https://youtube.com/playlist?list=PLYlB334TcbXGVBqG-7m_udB-QTWQXYCf8" target="_blank">
<button type="button" title="Coding in Next.js" class="FlutterDevPlaylist">Creating your own Web App Series - Playlist</button>
</a>
<br>
<br>
<!-- Intro to Game Dev Series - Button -->
<a href="https://www.youtube.com/playlist?list=PLrZhPM1p_9x6ft93Z13LdAKyZUne0D9Su" target="_blank">
<button type="button" title="Intro to Game Development Series" class="GameDevPlaylist">Intro to Game Dev - Playlist</button>
</a>
<script src="main.js"></script>
</body>
</html>