-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathThird.html
46 lines (35 loc) · 977 Bytes
/
Third.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Subjects</title>
</head>
<body background="https://media.giphy.com/media/3o6ZtcZCYVzROMckY8/giphy.gif">
<!-- <body background="http://i.imgur.com/HujJinn.gif"> -->
<a href="Navegador.html"> Go back to initial page </a>
<center>
<h2>Subjects to Study</h2>
<table border="2" width="50%">
<tr>
<th> Matéria </th>
<th> Assuntos </th>
<th> Quantidade de Horas </th>
</tr>
<tr>
<td> Kotlin </td>
<td> Recursividade </td>
<td> 3 aulas (12h) </td>
</tr>
<tr>
<td> Javascript </td>
<td> Inclusão Web </td>
<td> 2 aulas (8h) </td>
</tr>
<tr>
<td> C </td>
<td> Ponteiros </td>
<td> 4 aulas (16h) </td>
</tr>
</table></center>
</body>
</html>