-
Notifications
You must be signed in to change notification settings - Fork 28
/
index.html
70 lines (69 loc) · 2.11 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
<html>
<head>
<link href="css/style.css" rel="stylesheet" />
</head>
<body>
<div>
<header>
<nav class="navbar has-background-dark is-dark">
<div class="navbar-brand">
<a
class="navbar-item"
href="/"
rel="noopener noreferrer"
>
<img src="../images/ts.svg" alt="TypeScript Logo" />
<div class="navbar-item nav-home">
<span class="brand-first">TYPESCRIPT</span>
<span class="brand-second"> </span>
<span class="brand-third">FUNDAMENTALS</span>
</div>
</a>
</div>
</nav>
</header>
<div class="main-section columns">
<main class="column main-content">
<div class="content-title-group">
<h1 class="title">TypeScript Fundamentals</h1>
</div>
<ol class="main-menu column">
<li>
<a href="1-Course-Introduction/index.html">Course Introduction</a>
</li>
<li>
<a href="2-Getting-Started-With-TypeScript/index.html"
>Getting Started with TypeScript</a
>
</li>
<li>
<a href="3-Using-Variables-Types-And-Enums/index.html"
>Using Variables, Types, and Enums</a
>
</li>
<li>
<a href="4-Creating-And-Using-Functions/index.html"
>Creating and Using Functions</a
>
</li>
<li>
<a href="5-Creating-And-Using-Interfaces/index.html"
>Creating and Using Interfaces</a
>
</li>
<li>
<a href="6-Creating-And-Using-Classes/index.html"
>Creating and Using Classes</a
>
</li>
<li>
<a href="7-Creating-And-Using-Generics/index.html"
>Creating and Using Generics</a
>
</li>
</ol>
</main>
</div>
</div>
</body>
</html>