-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
140 lines (139 loc) · 4.78 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
129
130
131
132
133
134
135
136
137
138
139
140
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="CodeSect is a collaborative learning platform for developers and designers to effectively improve their programming knowledge and skills."
/>
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<script
async
src="https://www.googletagmanager.com/gtag/js?id=UA-154847338-1"
></script>
<script>
if (!navigator.doNotTrack) {
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-154847338-1');
}
</script>
<link
rel="apple-touch-icon"
sizes="180x180"
href="/apple-touch-icon.png?v=20200416"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/favicon-32x32.png?v=20200416"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="/favicon-16x16.png?v=20200416"
/>
<link rel="manifest" href="/site.webmanifest?v=20200416" />
<link
rel="mask-icon"
href="/safari-pinned-tab.svg?v=20200416"
color="#f8cf4d"
/>
<link rel="shortcut icon" href="/favicon.ico?v=20200416" />
<meta name="apple-mobile-web-app-title" content="CodeSect" />
<meta name="application-name" content="CodeSect" />
<meta name="msapplication-TileColor" content="#f8cf4d" />
<meta name="theme-color" content="#f8cf4d" />
<title>CodeSect | Learn, Build, Deploy, Share</title>
<link
href="https://fonts.googleapis.com/css?family=Libre+Franklin:300,400,600&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="/style.css?v=20200416" />
</head>
<body>
<a href="#content" class="skip-to-main">Skip to main content</a>
<header class="site-header">
<nav class="navbar wrapper" role="navigation">
<a class="navbar__link" href="/">
<img
alt="CodeSect - Home"
class="navbar__logo"
src="/logo.svg"
width="48"
/>
</a>
<button class="menu__button" id="toggle-menu" aria-expanded="false">
Menu
</button>
<ul class="menu" id="menu">
<li class="menu__item"><a class="menu__link" href="/">Home</a></li>
<li class="menu__item">
<a class="menu__link" href="/projects">Projects</a>
</li>
<li class="menu__item">
<a class="menu__link" href="/sign-in">Sign In</a>
</li>
<li class="menu__item">
<a class="menu__link menu__link--start" href="/invite"
>Get Started</a
>
</li>
</ul>
</nav>
</header>
<main id="content" tabindex="-1">
<div class="wrapper wrapper--center">
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 1200 1200"
width="300"
>
<path
fill="#3B405B"
fill-rule="evenodd"
d="M184 1002h349c23 0 44-12 55-32l95-164c12-20 33-32 56-32h23c17 0 32 9 41 23 13 24-4 53-31 53h-14c-20 0-39 11-49 29l-30 51c-18 32 5 72 42 72h296c37 0 60-40 41-72L920 692a64 64 0 00-55-32H671c-23 0-44 12-56 32l-72 126a64 64 0 01-56 32h-36c-27 0-44-29-31-53 9-14 24-23 41-23h6c21 0 40-11 51-29l7-13c19-32-4-72-41-72H336c-23 0-44 12-56 32L143 930c-19 32 4 72 41 72zm153-95a38 38 0 10-66-38l-14 25a38 38 0 0066 38l14-25z"
clip-rule="evenodd"
/>
<path
fill="#3B405B"
d="M558 210L376 525c-18 32 5 72 42 72h48c22 0 43-12 55-32l37-64c19-31 65-31 83 0l38 64c11 20 32 32 55 32h48c37 0 60-40 41-72L641 210a48 48 0 00-83 0z"
/>
</svg>
<h1 class="description">
CodeSect is <span class="nobr">coming soon</span>
</h1>
<p class="emoji" role="img" aria-hidden="true">🚀</p>
</div>
</main>
<footer class="site-footer">
<div class="wrapper wrapper--footer">
<ul class="footer-menu">
<li class="footer-menu__item">
<a class="footer-menu__link" href="/faq">FAQ</a>
</li>
<li class="footer-menu__item">
<a class="footer-menu__link" href="/terms">Terms</a>
</li>
<li class="footer-menu__item">
<a class="footer-menu__link" href="/privacy">Privacy Policy</a>
</li>
<li class="footer-menu__item">
<a class="footer-menu__link" href="/code-of-conduct"
>Code of Conduct</a
>
</li>
</ul>
<p class="credits">© 2020 CodeSect</p>
</div>
</footer>
<script src="/main.js"></script>
</body>
</html>