-
Notifications
You must be signed in to change notification settings - Fork 0
/
media.html
81 lines (65 loc) · 1.66 KB
/
media.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
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
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Carolyn Cline Media</title>
<!--
<style>
.element {
background-image: url("media/carolyn_cline_photos.png");
background-repeat: repeat;
}
</style> -->
</style>
<style>
.button {
background-color: #000000; /* black */
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin-bottom: 10px
}
</style>
</head>
<body class="element">
<header>
<h1>Carolyn Cline - Media</h1>
<a href="index.html" class="button">Back</a>
<br>
</header>
<main>
<hr>
<h3>Videos</h3>
<iframe width="75%" src="https://www.youtube.com/embed/8CXoAMxLxT8" style="aspect-ratio: 16 / 9;">
</iframe><br><br>
<hr>
<h3>Music</h3>
<p>Crazy</p>
<audio controls>
<source src="media/Track_03.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
<p>I Fall To Pieces</p>
<audio controls>
<source src="media/Track_05.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
<p>Sweet Dreams</p>
<audio controls>
<source src="media/Track_13.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio><br><br>
<hr>
<h3>Photos</h3>
<img src="media/carolyn_cline_photos.png" alt="Image" style="width: 100%; height: 100%; object-fit: contain;">
</main>
<footer>
<p>© Carolyn Cline, <script>document.write(new Date().getFullYear())</script></p>
</footer>
</body>
</html>