-
Notifications
You must be signed in to change notification settings - Fork 1
/
page3.html
44 lines (38 loc) · 1.51 KB
/
page3.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>List of Mangas</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<table bgcolor = "black" width = >
<tr bgcolor = "grey">
<th width = "200px">Manga</th>
<th width = "200px">Manga Link</th>
<th width = "200px">Manga Picture</th>
</tr>
<tr class = "manga_list_background" align="center">
<td>Solo Leveling</td>
<td><a href="https://mangadex.org/title/32d76d19-8a05-4db0-9fc2-e0b0648fe9d0/solo-leveling" target = "_blank" >click me</a></td>
<td><img class="manga_pic" src="images/solo leveling pic.jpg" alt="solo leveling picture"></td>
</tr>
<tr class = "manga_list_background" align="center">
<td>Beginning After the End</td>
<td><a href="https://mangadex.org/title/4ada20eb-085a-491a-8c49-477ab42014d7/the-beginning-after-the-end" target="_blank">click me</a></td>
<td><img class = "manga_pic" src="images/beginning after the end pic.jpg" alt=""></td>
</tr>
</table>
<a href="index.html">
<button>Home Page</button>
</a>
<button onclick="doSomething()">Click For Something</button>
<p id="test">test</p>
<script>
function doSomething(){
document.getElementById("test").innerHTML = "IT WORKS";
}
</script>
</body>
</html>