-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhackathon-members.html
executable file
·74 lines (67 loc) · 1.14 KB
/
hackathon-members.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Hackathon United</title>
<style type="text/css">
h1 {
text-align: center;
transition: .3s;
}
h1:hover {
transform: scale(1.1);
}
table, th, td {
border: 1px solid black;
}
table {
border-collapse: collapse;
width: 80%;
text-align: center;
margin: auto;
}
th, td{
padding: 10px 0;
}
</style>
</head>
<body>
<h1>List nama bro</h1>
<table>
<thead>
<tr>
<th>Nama</th>
<th>Bisa</th>
<th>Minat</th>
<th>Git?</th>
</tr>
</thead>
<!--
Masukin data yang tadi disebutin di sini
Copas aja <tr> ... </tr> nya
Ambil emojinya dari sini, bro
✅ ❌
-->
<tbody>
<tr>
<td>Uchan</td>
<td>Python, Javascript, Golang</td>
<td>AI, SE, Big Data</td>
<td>✅</td>
</tr>
<tr>
<td>Wiryawan</td>
<td>Android (Java), Java</td>
<td>AI, SE, Android (Native or Non)</td>
<td>✅</td>
</tr>
<tr>
<td>Haikal</td>
<td>Java, Web (newbie)</td>
<td>Web, Ai</td>
<td>✅</td>
</tr>
</tbody>
</table>
</body>
</html>