-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththird.html
More file actions
44 lines (37 loc) · 1.41 KB
/
third.html
File metadata and controls
44 lines (37 loc) · 1.41 KB
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>
<head>
<title>Third Page</title>
<link rel="stylesheet" href="styles.css"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body style="background-color: #e1dcdc">
<div class="topnav">
<a href="index.html"> Homepage </a>
<a href="second.html"> Projects </a>
<a href="third.html"> Interests </a>
<!-- <a href="fourth.html"> Contact Me </a> -->
</div>
<div></div>
<h1>My interests :0</h1>
<div class="artistImg">
<img src="https://wallpapercave.com/wp/wp9480714.jpg" style="width:500px;height:600px" alt="Image with BTS members">
</div>
<div class="artistImg2">
<img src="https://i.pinimg.com/550x/e3/ef/5e/e3ef5e62dc5eac0baf37ce492085f3dd.jpg" style="width:460px;height:600px" alt="image of Kevin Kaarl's album">
</div>
<div class="artist">
<dl>
<p>Favorite Artists</p>
<dt>BTS</dt>
<dd>
<a href="https://www.youtube.com/watch?v=kTlv5_Bs8aw">Watch here!</a>
</dd>
<dt>Kevin Kaarl</dt>
<dd>
<a href="https://www.youtube.com/watch?v=q07Gd6Q-7dY">Watch here!</a>
</dd>
</dl>
</div>
</body>
</html>