-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
128 lines (106 loc) Β· 6.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Page Information
ββββββββββββββββββββββββββββββββββββββββββββββββββ -->
<meta charset="utf-8">
<title>HighTechU</title>
<meta name="description" content="">
<meta name="author" content="">
<!-- 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,800&display=swap" rel="stylesheet">
<!-- CSS
ββββββββββββββββββββββββββββββββββββββββββββββββββ -->
<link rel="stylesheet" href="css/normalize.css">
<link id="pagestyle" rel="stylesheet" href="css/skeleton-light.css">
<link rel="stylesheet" href="css/brands.css">
<link rel="stylesheet" href="css/custom.css">
<!-- Latest compiled and minified CSS -->
<!-- Favicon
ββββββββββββββββββββββββββββββββββββββββββββββββββ -->
<link rel="icon" type="image/png" href="images/avatar.png">
<!-- Analytics
ββββββββββββββββββββββββββββββββββββββββββββββββββ -->
<script async defer data-website-id="37ac38ac-8983-4a1f-ae89-b0fb15d846db"
src="https://analytics-eta.vercel.app/umami.js"></script>
<!-- Dark Mode Scripts
ββββββββββββββββββββββββββββββββββββββββββββββββββ -->
<script>
function swapStyleSheet(sheet) {
document.getElementById('pagestyle').setAttribute('href', sheet);
}
</script>
</head>
<body>
<!-- Primary Page Layout
ββββββββββββββββββββββββββββββββββββββββββββββββββ -->
<main class="container">
<div class="row">
<div class="column">
<!-- Introcuction -->
<section>
<!-- Image -->
<img src="images/avatar.png" srcset="images/[email protected] 2x" role="presentation" alt="">
<!-- Name and Description -->
<h1>HighTechU</h1>
<p>An Initiative of <a href="https://uvic.ca/engineering" title="External Link - UVic Website">UVic
Engineering and Computer Science</a></p>
</section>
<section>
<!-- Tagline -->
<h2>Empowering Future Innovators</h2>
<!-- Short Bio -->
<p><a href="https://hightechu.ca" title="External Link - HighTechU Website">HighTechU</a> is an innovative learning community for high-school-aged youth in
British Columbia to make connections, build professional skills, and explore diverse education and career pathways related to technology.
</p>
<!-- Default switch -->
<p><a onclick="swapStyleSheet('css/skeleton-dark.css')">π Dark Theme</a> | <a
onclick="swapStyleSheet('css/skeleton-light.css')">βοΈ Light Theme</a></p>
</section>
<!-- Links -->
<section>
<!-- Link -->
<a class="buttonLong button-link" href="https://hightechu.ca/" title="External Link - HighTechU Website">
<img class="icon" src="icons/link.svg" alt="">Visit Our Website</a>
<!-- Link -->
<a class="buttonLong button-link" href="https://hightechu.ca/feed/eo-events/" title=".ics Download">
<img class="icon" src="icons/link.svg" alt="">Subscribe to Our Calendar (iCal)</a>
<!-- Link -->
<a class="buttonLong button-link" href="https://www.uvic.ca/engineering/" title="External Link - UVic Engineering Website">
<img class="icon" src="icons/link.svg" alt="">Learn More About UVic Engineering</a>
<!-- Github -->
<a class="button button-github" href="https://github.com/hightechu/" title="External Link - GitHub">
<img class="icon" src="icons/github.svg" alt="">Github</a>
<!-- Twitter -->
<a class="button button-twitter" href="https://twitter.com/hightechu_ca/" title="External Link - Twitter">
<img class="icon" src="icons/twitter.svg" alt="">Twitter</a>
<!-- Instagram -->
<a class="button button-instagram" href="https://www.instagram.com/hightechu_ca/" title="External Link - Instagram">
<img class="icon" src="icons/instagram.svg" alt="">Instagram</a>
<!-- Facebook -->
<a class="button button-facebook" href="https://www.facebook.com/hightechu/" title="External Link - Facebook">
<img class="icon" src="icons/facebook.svg" alt="">Facebook</a>
<!-- YouTube -->
<a class="button button-youtube" href="https://www.youtube.com/channel/UC2Mn8IgijRO-OF-DrWEq4KA?sub_confirmation=1" title="External Link - YouTube">
<img class="icon" src="icons/youtube.svg" alt="">YouTube</a>
<!-- LinkedIn -->
<a class="button button-linkedin" href="https://www.linkedin.com/company/hightechu/" title="External Link - LinkedIn">
<img class="icon" src="icons/linkedin.svg" alt="">LinkedIn</a>
<!-- Twitch -->
<a class="button button-twitch" href="https://www.twitch.tv/hightechu/" title="External Link - Twitch">
<img class="icon" src="icons/twitch.svg" alt="">Twitch</a>
</section>
<footer>
<p>Built using <a href="https://littlelink.io" title="External Link - LittleLink">LittleLink</a>.</p>
</footer>
</div>
</div>
</main>
<!-- End Document
ββββββββββββββββββββββββββββββββββββββββββββββββββ -->
</body>
</html>