-
Notifications
You must be signed in to change notification settings - Fork 1
/
shows.html
60 lines (57 loc) · 1.55 KB
/
shows.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
<!DOCTYPE html>
<html>
<head>
<title>Common Cents Party</title>
<link rel="stylesheet" type="text/css" href="style.css"/>
</head>
<body style="background-color: #FFCCE6">
<div class="container">
<div class="nav">
<h4>Common Cents Party</h4>
<ul>
<li>Home</li>
<li>Shows</li>
<li>Albums</li>
<li>Gallery</li>
<li>Bio</li>
<li>Blog</li>
</ul>
</div>
<div class="main">
<h1>Upcoming Shows</h1>
<video height='300px' width='650px' controls>
<source src=" https://s3.amazonaws.com/codecademy-content/projects/make-a-website/lesson-1/liveshow.mp4" type='video/mp4'>
</video>
<ul>
<li>
Tokyo, Japan - January 26th, 2016
</li>
<li>
Seoul, Republic of Korea - January 28th, 2016
</li>
<li>
Singapore, Singapore - January 30th, 2016
</li>
<li>
London, United Kingdom - March 5th, 2016
</li>
<li>
London, United Kingdom - March 7th, 2016
</li>
<li>
London, United Kingdom - March 8th, 2016
</li>
<li>
London, United Kingdom - March 9th, 2016
</li>
<li>
Manchester, United Kingdom - March 13th, 2016
</li>
<li>
Glasgow, United Kingdom - March 14th, 2016
</li>
</ul>
</div>
</div>
</body>
</html>