-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfunstuff.html
More file actions
69 lines (60 loc) · 2.41 KB
/
funstuff.html
File metadata and controls
69 lines (60 loc) · 2.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fun Stuff</title>
<link rel="stylesheet" href="styles.css">
</head>
<body class="fun-page">
<div class="topnav">
<a href="index.html"> Home </a>
<a href="projects.html"> Projects </a>
<a href="experience.html"> Experience </a>
<a href="funstuff.html"> Fun Stuff </a>
</div>
<div class="text-container">
<div class="background-text">Favorite Albums</div>
</div>
<div class="fun-container">
<a href="https://www.youtube.com/watch?v=A2VpR8HahKc&list=PLSdoVPM5WnndSQEXRz704yQkKwx76GvPV" target="_blank">
<img src="assets/discovery.jpg" alt="Discovery - Daft Punk">
</a>
<div class="project-description">
<h2>Discovery - Daft Punk</h2>
</div>
</div>
<div class="fun-container">
<a href="https://www.youtube.com/watch?v=c5tSFEhde58&list=OLAK5uy_kT-Wz5yuAHB_pJlDx_RtmwD3K_2CWFLPM" target="_blank">
<img src="assets/steelyDan.jpg" alt="Can't Buy A Thrill - Steely Dan">
</a>
<div class="project-description">
<h2>Can't Buy A Thrill - Steely Dan</h2>
</div>
</div>
<div class="fun-container">
<a href="https://www.youtube.com/watch?v=Mmp5jAKpyns&list=OLAK5uy_ldZpfPljmwhO4m7Eu8HUTylyh1uHT4wyY" target="_blank">
<img src="assets/remain.jpg" alt="Remain in Light - Talking Heads">
</a>
<div class="project-description">
<h2>Remain in Light - Talking Heads</h2>
</div>
</div>
<div class="fun-container">
<a href="https://www.youtube.com/watch?v=02_Lhj1gxO8&list=OLAK5uy_lzGQqFprfz4-6yiL5BtRABmjHHEEuNDx8" target="_blank">
<img src="assets/empire.jpg" alt="Walking On A Dream - Empire of the Sun">
</a>
<div class="project-description">
<h2>Walking On A Dream - Empire of the Sun</h2>
</div>
</div>
<div class="fun-container">
<a href="https://www.youtube.com/watch?v=Rc9P2m6KPfQ&list=OLAK5uy_ndzzxBYpIgGAq6l8YDTWeYq-1Xx1TkMJQ&index=1" target="_blank">
<img src="assets/sabrina.jpg" alt="Short n' Sweet - Sabrina Carpenter">
</a>
<div class="project-description">
<h2>Short n' Sweet - Sabrina Carpenter</h2>
</div>
</div>
</body>
</html>