-
Notifications
You must be signed in to change notification settings - Fork 23
/
index.html
68 lines (62 loc) · 1.74 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>✨ Type Level TypeScript Workshop ✨</title>
</head>
<body>
<style>
body {
background-color: rgb(40, 40, 56);
color: white;
}
* {
box-sizing: border-box;
line-height: 1.5;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
a {
color: #bbb;
}
.flex {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
padding: 30px;
}
.container {
max-width: 450px;
}
</style>
<div class="flex">
<div class="container">
<h2>
Welcome to the <br />
✨ Type Level TypeScript Workshop ✨!
</h2>
<p>
In this workshop, we will focus on <b>types</b> and won't use the
browser at all, <b>everything will take place in the code editor</b>.
</p>
<p>
you can click on the
<img
height="16"
width="16"
style="background-color: black"
src="https://codesandbox.io/public/vscode33/vs/codesandbox/services/codesandbox/assets/preview.svg"
/>
icon to close the browser and maximize the code editor.
</p>
<p>
You can now open <a href="#">README.md</a> and the first exercise in
<a href="#">00-introduction/exercise.ts</a>
</p>
</div>
</div>
</body>
</html>