-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgol.html
71 lines (64 loc) · 1.46 KB
/
gol.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Functional Web Dev Schedule</title>
<style>
body {
font-family:Cascadia code;
background-color: #f4f4f4;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: left;
height: 100vh;
letter-spacing: -2px;
}
.container {
background-color: white;
text-align: left;
height: 100vh;
width: 100%;
padding: 20px 100px;
font-weight: 900;
}
h1 {
font-size: 3.4em;
margin-bottom: 20px;
font-weight: 900;
}
ul {
list-style-type: none;
padding: 0;
}
li {
font-size: 1.6em;
margin: 10px 0;
color: #555;
}
li strong {
color: black;
font-weight: bold;
}
</style>
</head>
<body>
<div class="container">
<h1>Functional Web Dev.</h1>
<ul>
<li>Introductory Video - 23 Sep</li>
<li>Html, Css, Js - 28 Sep</li>
<li>Js Logic - 01 Oct</li>
<li>React Js - 07 Oct</li>
<li>React Js Projects - 15 Oct</li>
<li>MEN - 27 Oct</li>
<li>Micro Services - 05 Nov</li>
<li>Next Js - 15 Nov</li>
<li>Next Js Projects - 22 Nov</li>
<li>MERN Stack Project - 10</li>
</ul>
</div>
</body>
</html>