forked from CodeYourFuture/HTML-CSS-Coursework-Week1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (51 loc) · 1.96 KB
/
index.html
File metadata and controls
55 lines (51 loc) · 1.96 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<title>My Blog</title>
<link href="//fonts.googleapis.com/css?family=Roboto:400,500,300" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="css/style.css" />
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
</head>
<body>
<header class="title">Artificial Aesthetic Web Radio <p>• Every Song Tells A Story •</p>
</header>
<article>
<section class="electronicMusic">
<h1>• Electronic Music •</h1>
<p>Electronic music is music that employs electronic musical instruments, digital instruments, or circuitry-based
music technology in its creation. It includes both music made using electronic and electromechanical means
(electroacoustic music).</p>
</section>
<section class="genres">
<h2>• List Of Electronic Music Genres •</h2>
<ul>
<li>Electronica</li>
<li>House</li>
<li>Organic</li>
<li>Downtempo</li>
<li>Melodic Techno</li>
<li>Nu Indie</li>
<li>Breaks</li>
<li>Ambient</li>
<li>And More...</li>
</ul>
</section>
<section class="taste">
<h2>• Just A Little Taste Of Artificial Aesthetic Web Radio Music • </h2>
<iframe class="video" width="560" height="315" src="https://www.youtube.com/embed/j2aU6K7HOW0"
title="YouTube video player"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
</section>
</article>
<footer class="footer">
<p>join us for more information</p>
<div id="listen-live">
<a href="https://aawebradio.com/" target="_blank"><img class="listen-live"
src="https://catcountry987.com/wp-content/uploads/2012/12/play_button.png" alt="Listen Live"></a>
</div>
</footer>
</body>
</html>