-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.html
45 lines (45 loc) · 1.4 KB
/
template.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="CSS/normalize.css">
<link rel="stylesheet" href="CSS/style.css">
<script type="text/javascript" src="js/content.js" defer></script>
<title>Rock Bnad</title>
</head>
<body>
<header>
<nav>
<a href="/"><img src="images/RockBand.png" alt="Rock band"></a>
<ul>
<li><a href="news.html">News</a></li>
<li><a href="tour.html">Tour Dates</a></li>
<li><a href="about.html">about the band</a></li>
<li><a href="contact.html">contact</a></li>
</ul>
</nav>
<section id="Latest">
<h1>Latest single</h1>
<p>Album title</p>
<audio src="#" preload controls>
<track kind="captions" src="#" srclang="en" label="English">
</audio>
<a href="#">Buy Album</a>
</section>
</header>
<!--comment stuff -->
<footer>
<ul>
<li><a href="#">Newletter</a></li>
<li><a href="#">facebook</a></li>
<li><a href="#">Twitter</a></li>
<li><a href="#">Youtube</a></li>
<li><a href="#">Google +</a></li>
<li><a href="#">instagram</a></li>
<li><a href="#">Contact</a></li>
</ul>
</footer>
</body>
</html>