html
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
<!DOCTYPE html>
<html lang="en"><!--declare the language of the page-->
<head>
<title>My site</title><!--Display as site tab title-->
<link rel="stylesheet" type="text/css" href="anime_style.css">
<!-- link css and html-->
<meta name ="viewport" content="width=device-width, initial-scale=1.0">
<!--make the webpage fit the screen-->
</head>
<div class="dif">
<body>
<img class ="logo" src="images/logo.jpg" alt="Logo">
<br><br><br><br></div>
<div class="navbar">
<a href="homepage.html">Home</a>
<a href="">Why you should watch anime?</a>
<a href="">Anime</a>
<div class="dropdown">
<button class="dropbtn">Books
</button>
<div class="dropdown-content">
<a href="#">Books</a>
<a href="#">Manga</a>
<a href="#">Light novel</a>
<a href="#">Webtoons</a>
</div>
Enter to Rename, Shift+Enter to Preview
css
css
1
2
3
body {
}
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run