-
Notifications
You must be signed in to change notification settings - Fork 0
/
albumPageBs.html
123 lines (108 loc) · 3.38 KB
/
albumPageBs.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
<!DOCTYPE html>
<html>
<header>
<title>A Head Full of Dreams</title>
<!-- Internal Style Sheet -->
<style type="text/css">
td, th, table {
border: 1px solid black;
border-collapse: collapse;
text-align: center;
}
h1.titleheading, h2.bandheading, h2.membersheading, h3.yearheading {
text-align: center;
}
/* Ask if written, "font-family: serif" (without the other two inputs), would work too.. */
h1.titleheading, h2.membersheading, h2 a {
font-family: Arial, Helvetica, sans-serif;
}
/*
.image {
background: url('images/albumcover.jpg') no-repeat center;
background-size: 300px 300px;
height: 300px; /* needed to increase the height of the div element to help reveal image
}
*/
li {
font-style: italic;
}
h2 a {
text-decoration: none;
}
a:link {
color: rgb(51, 102, 187); /* #3366BB */
}
a:visited {
color: rgb(102, 51, 102); /* #663366 */
}
a:hover {
text-decoration: underline;
}
a:active {
color: rgb(11, 0, 128); /* #0B0080 */
}
tbody {
font-style: italic;
}
tr:nth-child(even) {
background-color: lightgrey;
}
</style>
<!-- Bootstrap -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="bootstrap-3.3.7-dist/css/bootstrap.min.css">
<link rel="stylesheet" href="bootstrap-3.3.7-dist/css/bootstrap-theme.min.css">
<script src="bootstrap-3.3.7-dist/js/bootstrap.min.js"></script>
<!-- -->
<link href="externalStyle.css" rel="stylesheet" type="text/css" />
</header>
<body>
<div>
<div class="container">
<img src="images/albumcover.jpg" class="img-circle center-block">
</div>
<h1 class="titleheading">A Head Full of Dreams</h1>
<h2 class="bandheading"><a href="http://coldplay.com/">Coldplay</a></h2>
<h3 class="yearheading">2015</h3>
<hr/>
<h2 class="membersheading">Band members and Producers</h2>
<ul>
<li>Chris Martin - Piano</li>
<li>Jonny Buckland - Lead guitar</li>
<li>Guy Berryman - Acoustic guitar</li>
<li>Will Champion - Piano</li>
<li>Rik Simpson - Producer</li>
</ul>
<table class="container">
<!-- container class is part of Bootstrap -->
<caption>
<h2>Tracks</h2>
</caption>
<thead>
<tr>
<th>Track #</th>
<th>Track Title</th>
<th>Track Length</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>A Head Full Of Dreams</td>
<td>3:43</td>
</tr>
<tr>
<td>2</td>
<td>Birds</td>
<td>3:49</td>
</tr>
<tr>
<td>3</td>
<td>Hymn for the Weekend</td>
<td>4:18</td>
</tr>
</tbody>
</table>
</div>
</body>
</html>