This repository has been archived by the owner on Jun 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
links.html
163 lines (154 loc) · 3.84 KB
/
links.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
<!DOCTYPE html>
<html>
<head>
<!-- Meta tags -->
<meta charset="utf-8" />
<meta
content="width=device-width, initial-scale=1, shrink-to-fit=no"
name="viewport"
/>
<meta
content="Student-led gaming community based out of Vaughan, ON. Hosting monthly tournaments for VALORANT, LoL, R6, and SSBU."
name="description"
/>
<!-- Open Graph Meta Tags for Discord Embed -->
<meta content="en_US" property="og:locale" />
<meta content="website" property="og:type" />
<meta content="Vaughan Esports" property="og:site_name" />
<meta content="Vaughan Esports | Home" property="og:title" />
<meta
content="Student-led gaming community based out of Vaughan, ON. Hosting monthly tournaments for VALORANT, LoL, R6, and SSBU."
property="og:description"
/>
<meta
content="https://vaughanesports.org/assets/Vaughan%20Esports%20Logo%20Footer.png"
property="og:image"
/>
<meta content="https://vaughanesports.org" property="og:url" />
<!-- Favicon -->
<link
href="/assets/icons/apple-icon-57x57.png"
rel="apple-touch-icon"
sizes="57x57"
/>
<link
href="/assets/icons/apple-icon-60x60.png"
rel="apple-touch-icon"
sizes="60x60"
/>
<link
href="/assets/icons/apple-icon-72x72.png"
rel="apple-touch-icon"
sizes="72x72"
/>
<link
href="/assets/icons/apple-icon-76x76.png"
rel="apple-touch-icon"
sizes="76x76"
/>
<link
href="/assets/icons/apple-icon-114x114.png"
rel="apple-touch-icon"
sizes="114x114"
/>
<link
href="/assets/icons/apple-icon-120x120.png"
rel="apple-touch-icon"
sizes="120x120"
/>
<link
href="/assets/icons/apple-icon-144x144.png"
rel="apple-touch-icon"
sizes="144x144"
/>
<link
href="/assets/icons/apple-icon-152x152.png"
rel="apple-touch-icon"
sizes="152x152"
/>
<link
href="/assets/icons/apple-icon-180x180.png"
rel="apple-touch-icon"
sizes="180x180"
/>
<link
href="/assets/icons/android-icon-192x192.png"
rel="icon"
sizes="192x192"
type="image/png"
/>
<link
href="/assets/icons/favicon-32x32.png"
rel="icon"
sizes="32x32"
type="image/png"
/>
<link
href="/assets/icons/favicon-96x96.png"
rel="icon"
sizes="96x96"
type="image/png"
/>
<link
href="/assets/icons/favicon-16x16.png"
rel="icon"
sizes="16x16"
type="image/png"
/>
<link href="/assets/icons/manifest.json" rel="manifest" />
<meta content="#ffffff" name="msapplication-TileColor" />
<meta
content="/assets/icons/ms-icon-144x144.png"
name="msapplication-TileImage"
/>
<meta content="#ffffff" name="theme-color" />
<!-- Title of Page -->
<title>Vaughan Esports</title>
<!-- CSS Sheet -->
<link rel="stylesheet" href="linksStyle.css" />
</head>
<body>
<img
loading="lazy"
id="userPhoto"
src="assets\Logo with Text.png"
alt="User Photo"
/>
<a
href="https://www.instagram.com/vaughanesports"
id="userName"
target="_blank"
>@vaughanesports</a
>
<div id="links">
<a class="link" href="https://vaughanesports.org/discord" target="_blank"
>Discord</a
>
<a class="link" href="https://vaughanesports.org" target="_blank"
>Website</a
>
<a class="link" href="https://vaughanesports.org/twitch" target="_blank"
>Twitch</a
>
<a class="link" href="https://vaughanesports.org/youtube" target="_blank"
>YouTube</a
>
<a class="link" href="https://vaughanesports.org/tiktok" target="_blank"
>TikTok</a
>
<a
class="link"
href="https://vaughanesports.org/instagram"
target="_blank"
>Instagram</a
>
<a class="link" href="https://vaughanesports.org/twitter" target="_blank"
>Twitter</a
>
</div>
<div class="footer">Made with ❤ by Vaughan Esports</div>
<!-- Javascript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="index.js"></script>
</body>
</html>