-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathindex.html
65 lines (54 loc) · 1.57 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Github Workshop</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Special+Elite&display=swap" rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
font-family: 'Special Elite', cursive;
background-color: black;
color: white;
padding: 10px;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
}
a {
color: white;
font-weight: bold;
}
</style>
</head>
<body>
<div class="container">
<h3>github101 workshop attendance</h3>
<div>
<ol>
<li>
<a href="https://github.com/rabeeh-ta">@rabeeh</a>
</li>
<li>
<a href="https://github.com/azlanajju">@azlan</a>
</li>
<li>
<a href="https://github.com/rifaz124">@rifaz</a>
</li>
<li>
<a href="https://github.com/MuadhAli">@muad</a>
</li>
<li>
<a href="https://github.com/Sinan593">@sinan</a>
</li>
</ol>
</div>
</div>
</body>
</html>