-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmadonna_tour.html
46 lines (46 loc) · 991 Bytes
/
madonna_tour.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
<! -- This is our madonna page -->
<!DOCTYPE html>
<html>
<head>
<title>Madonna 2015 Tour!</title>
<style>
body {background-color:pink}
h1 {color:#AF1795}
h2 {color:red}
hr {color:blue}
#green {color:green}
#list {background-color:lightgrey}
</style>
</head>
<body>
<h1> 2015 Madonna tour!</h1>
<p>Everything you need to know!</p>
<img src="madonna.jpg" alt="Madonna" style="width:350px;height:228px;">
<br>
<a href="http://www.madonna.com">Madonna's official site here!</a>
<br>
<a href="loudoun_madonna_fans.html">Loudoun County Madonna club official site here!</a>
<br>
<div id='list'>
<hr>
<h2 id="green">Tour dates</h2>
<p>Everything you need to know about tour dates!</p>
<ol>
<li>9/14 - Washington DC</li>
<li>9/30 - Miami</li>
<li>10/22 - Paris</li>
</ol>
<hr>
<h2>Playlists</h2>
<p>Everything you need to know about playlists!</p>
<ul>
<li>Holiday</li>
<li>Like a Prayer</li>
<li>Material Girl</li>
</ul>
<hr>
</div>
<h2>Song Lyrics</h2>
<p>original song!</p>
</body>
</html>