-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (61 loc) · 2.23 KB
/
index.html
File metadata and controls
65 lines (61 loc) · 2.23 KB
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
<!DOCTYPE html>
<html lang="en" data-theme="light">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DevsCreate</title>
<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=Space+Grotesk:wght@400;500;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/app.css">
<script src="js/index.js" defer></script>
</head>
<body>
<div class="backdrop" aria-hidden="true"></div>
<div class="container">
<header>
<div class="logo">DevsCreate</div>
<button class="toggle" id="theme-toggle" type="button" aria-pressed="false">
<span>Light</span>
<div class="toggle-track">
<div class="toggle-thumb" aria-hidden="true">☀️</div>
</div>
</button>
</header>
<section class="content">
<div class="hero-text">
<h1>A discord server for developers, not like any other!</h1>
<p>We are a community of developers who are passionate about learning and sharing our knowledge with others.</p>
<div class="card">
<p><strong>Diverse</strong></p>
<p>We have a variety of channels for different languages and frameworks.</p>
</div>
<div class="card">
<p><strong>Helpful</strong></p>
<p>We are always here to help you with your projects and questions.</p>
</div>
<div class="hero-actions">
<button class="goo-btn" type="button" onclick="window.location.href='https://discord.gg/devscreate'" >Join the server</button>
<span>Over idk devs online right now</span>
</div>
</div>
<div class="illustration">
<div class="stars"></div>
<div class="sunrise"></div>
<div class="orbit">
<div class="planet"></div>
</div>
<div class="swatches">
<div class="swatch light">
<span>Daylight</span>
</div>
<div class="swatch dark">
<span>Midnight</span>
</div>
</div>
</div>
</section>
</div>
</body>
</html>