-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (52 loc) · 2.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DevWars</title>
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="site">
<div class="header">
<img class="logo" src="./img/logo.svg" alt="DevWars Logo">
<h3>A live <strong>game show</strong> for developers</h3>
</div>
<div class="hero">
<h1>We're on a hiatus</h1>
<p>In the meantime, check out our YouTube and Twitch for content. Join our Discord community for updates.</p>
</div>
<div class="footer">
<div class="socials">
<a href="https://www.twitch.tv/devwars" target="_blank">
<img src="./img/brands/twitch.svg" alt="Twitch">
</a>
<a href="https://www.youtube.com/c/DevWars" target="_blank">
<img src="./img/brands/youtube.svg" alt="YouTube">
</a>
<a href="https://www.github.tv/devwars" target="_blank">
<img src="./img/brands/github.svg" alt="GitHub">
</a>
<a href="https://discord.gg/devwars" target="_blank">
<img src="./img/brands/discord.svg" alt="Discord">
</a>
<a href="http://www.reddit.com/r/devwars" target="_blank">
<img src="./img/brands/reddit.svg" alt="Reddit">
</a>
<a href="https://x.com/devwarstv" target="_blank">
<img src="./img/brands/x.svg" alt="X">
</a>
<a href="https://www.facebook.com/DevWars" target="_blank">
<img src="./img/brands/facebook.svg" alt="Facebook">
</a>
</div>
<span class="legal">© 2024 DevWars, LLC. All rights reserved.</span>
</div>
</div>
<div class="overlay"></div>
</body>
</html>