-
Notifications
You must be signed in to change notification settings - Fork 0
/
tour.html
86 lines (82 loc) · 3.13 KB
/
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
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<link href="css/styles.css" rel="stylesheet" type="text/css" />
<link href="css/tour.css" rel="stylesheet" type="text/css" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0"/>
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,300,600' rel='stylesheet' type='text/css'>
<title>Accessible Frog</title>
</head>
<body>
<div class="main-nav" role="navigation">
<ul class="nav">
<li class="name"><a href="index.html">Accessible Frog</a></li>
<li><a href="#">Tour</a></li>
<li><a href="survey.html">Survey</a></li>
</ul>
</div>
<header>
<h1>Accessible Frog</h1>
<p>we make awesome music</p>
</header>
<main role="main">
<div class="card">
<div class="flex">
<!-- The following images are decorative for this project. -->
<!-- Please see the project instructions for information on how to handle these. -->
<!-- <img class="pick" src= "img/guitar_pick.png" alt="">
<p class= "heading">Tour Dates</p>
<img class="pick" src= "img/guitar_pick.png" alt=""> -->
<!-- <pre>
Date Venue Location
Mar 10 - 12 The Warfield San Francisco, CA
Mar 20 - 23 Pepsi Center Denver, CO
Apr 2 - 4 Beacon Theatre New York City, NY
Apr 10 Paramount Theatre Seattle, WA
</pre> -->
<table>
<caption class= "heading">Tour Dates</caption>
<thead>
<tr>
<th scope="col">Date</th>
<th scope="col">Venue</th>
<th scope="col">Location</th>
</tr>
</thead>
<tbody>
<tr>
<td>Mar 10 - 12</td>
<td>The Warfield</td>
<td>San Francisco, CA</td>
</tr>
<tr>
<td>Mar 20 - 23</td>
<td>Pepsi Center</td>
<td>Denver, CO</td>
</tr>
<tr>
<td>Apr 2 - 4</td>
<td>Beacon Theatre</td>
<td>New York City, NY</td>
</tr>
<tr>
<td>Apr 10</td>
<td>Paramount Theatre</td>
<td>Seattle, WA</td>
</tr>
</tbody>
</table>
</div>
</div>
</main>
<footer role="contentinfo">
<ul>
<li><a href="#" class="social twitter"><img src= "img/twitter-32.png" alt="twitter"></a></li>
<li><a href="#" class="social youtube"><img src= "img/youtube-32.png" alt="youtube"></a></li>
<li><a href="#" class="social spotify"><img src= "img/spotify-32.png" alt="spotify"></a></li>
</ul>
<p class="copyright">Copyright 2015, Accessible Frog</p>
</footer>
</body>
</html>