-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
44 lines (39 loc) · 1.28 KB
/
about.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>About Finger Eleven</title>
<link rel="stylesheet" href="about.css" type="text/css">
</head>
<body>
<h1>About my favourite band</h1>
<h2>Finger Eleven</h2>
<!-- Image taken from https://commons.wikimedia.org/wiki/File:MuchMusic_Video_Awards_2007_588.jpg -->
<!-- under Creative Commons 2.5 license.-->
<!-- Changes made: File filename -->
<div id="image">
<img src="fingereleven.jpg">
</div>
<div id="content">
<p>
Finger Eleven was formed in 1990 in Ontario, Canada.
They have released 7 studio albums. Band was awarded
8 different Juno Awards and many times had a decent place
on Canadian and US music charts.
</p>
<p>
Band Members:
</p>
<ul>
<li>Sean Anderson - vocal</li>
<li>James Black - lead guitar</li>
<li>Rick Jackett - rhytm guitar</li>
<li>Sean Anderson - bass guitar</li>
<li>Steve Molella - drums</li>
<br>
<li>Rich Beddoe (former - in the photo) - drums</li>
</ul>
</div>
<footer>All rights reserved to original authors under Creative Commons 2.5 license</footer>
</body>
</html>