-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
129 lines (129 loc) · 3.79 KB
/
index.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!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 preload controls>
<source src="images/HoldMe_64kb.mp3" type="audio/mpeg">
</audio>
<a href="#">Buy Album</a>
</section>
</header>
<section id="bnews">
<h1 class="Lheader">Latest <strong>Band news</strong></h1>
<article class="f-news">
<header>
<p>Date</p>
<h2>Featured news title</h2>
</header>
<img src="" alt="">
</article>
<article>
<header>
<p>Date</p>
<h2>Featured news title</h2>
</header>
<img src="" alt="">
</article>
<article>
<header>
<p>Date</p>
<h2>Featured news title</h2>
</header>
<img src="" alt="">
</article>
<article>
<header>
<p>Date</p>
<h2>Featured news title</h2>
</header>
<img src="" alt="">
</article>
<article>
<header>
<p>Date</p>
<h2>Featured news title</h2>
</header>
<img src="" alt="">
</article>
</section>
<section id="lEvents">
<h1 class="Lheader">Live <strong>Events</strong></h1>
<aside>
<h2>Tour Name</h2>
<p>Tour year</p>
</aside>
<table>
<tr>
<td><!-- Date --></td>
<td><p><!-- Details --> </p></td>
<td><!-- location --></td>
<td><!-- Ticket --></td>
</tr>
<tr>
<td><!-- Date --></td>
<td><p><!--Details --> </p></td>
<td><!--tag --></td>
</tr>
<tr>
<td><!-- Date --></td>
<td><p><!--Details --> </p></td>
<td><!--tag --></td>
</tr>
<tr>
<td><!-- Date --></td>
<td><p><!--Details --> </p></td>
<td><!--tag --></td>
</tr>
</table>
<a href="#">View more</a>
</section>
<section id="About">
<article>
<h1>About <strong>The Band</strong></h1>
<blockquote><p>quote</p></blockquote>
<p><!-- more details about some text --></p>
<a href="#">View timeline</a>
</article>
<ul>
<li><img src="#" alt=""></li>
<li><img src="#" alt=""></li>
<li><img src="#" alt=""></li>
<li><img src="#" alt=""></li>
<li><img src="#" alt=""></li>
<li><img src="#" alt=""></li>
</ul>
</section>
<footer>
<ul>
<li><a href="#">Newletter</a></li>
<li><a class="rating" data-rating="1" href="www.facebook.com">facebook</a></li>
<li><a class="rating" data-rating="2" href="www.twitter.com">Twitter</a></li>
<li><a class="rating" data-rating="3" href="www.youtube.com">Youtube</a></li>
<li><a class="rating" data-rating="4" href="www.youtube.com">Google +</a></li>
<li><a class="rating" data-rating="5" href="www.youtube.com">instagram</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</footer>
</body>
</html>