-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathart.html
22 lines (22 loc) · 850 Bytes
/
art.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
<head>
<title>Art</title>
<link rel="stylesheet" href="style.css"/>
<link rel="icon" href="images/favicon.ico"/>
<script src="click.js"></script>
</head>
<body>
<nav class="top-nav">
<a onclick="clicked('index')">Home</a>
<a onclick="clicked('entrance')">Entrance</a>
<a onclick="clicked('video')">Videos</a>
<a class="active" onclick="clicked('art')">Art</a>
<a onclick="clicked('notebook')">Notebook</a>
</nav>
<!--Artwork to display-->
<div style="margin-top: 1em;" class="coverart">
<img src="https://i.pinimg.com/originals/58/fc/e3/58fce3b346bf7b55a5bf622901b1d0e4.jpg" style="max-width: 100%; height: auto;" alt="Death Note Page 37 Art.">
</div>
</body>
</html>