-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
executable file
·74 lines (64 loc) · 3.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-177873973-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-177873973-1');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Palanquin:wght@100;200;300;400;500;600;700&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="main.css">
<link rel="stylesheet" href="home.css">
<script src="/scripts/main.js"></script>
<meta name="robots" content="index, follow">
<meta property="og:locale" content="en_US" />
<meta property="og:image" content="">
<!--DESIGN IMAGE-->
<meta property="og:image:type" content="image/png">
<meta property="og:image:width" content="1280">
<meta property="og:image:height" content="640">
<meta property="og:url" content="https://zirkuit.github.io">
<meta name="twitter:card" content="summary_large_image">
<meta name="language" content="English">
<meta name="description"
content="Experiments and solutions to modern-day problems with hardware and software working together.">
<meta property="og:description"
content="Experiments and solutions to modern-day problems with hardware and software working together.">
<title>Zirkuit</title>
<link rel="apple-touch-icon" sizes="57x57" href="../assets/favicons/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="../assets/favicons/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="../assets/favicons/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="../assets/favicons/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="./assets/favicons/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="./assets/favicons/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="./assets/favicons/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="./assets/favicons/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="./assets/favicons/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="./assets/favicons/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="../assets/favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="../assets/favicons/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="../assets/favicons/favicon-16x16.png">
<link rel="manifest" href="./assets/favicons/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
</head>
<body>
<img src="assets/zirkuit_black.png" alt="">
<!--
<div class="landing-button-div">
</div>-->
<a class="button" href="join" onclick='goto(this, "join/")'>Join the team →</a>
<footer>
<p>© 2021 Zirkuit</p>
</footer>
</body>
</html>