-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpodcast.html
86 lines (80 loc) · 3.42 KB
/
podcast.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 class="background">
<head>
<meta charset="UTF-8">
<title>Loven Life With Lisa | Podcast</title>
<link rel="icon" href="favicon.ico" type="image/x-icon"/>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon"/>
<link href="stylesheets/screen.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="//use.typekit.net/aph8nyi.js"></script>
<script type="text/javascript">try{Typekit.load();}catch(e){}</script>
<script type="text/javascript" src="scripts/html5shiv.js"></script>
</head>
<body>
<div id="container">
<header class="blur">
<img class="logo" src="./images/butterfly.png" alt="Butterfly Logo" title="Beautiful Butterfly Logo" />
<h1>Loven Life with Lisa</h1>
</header>
<nav class="blur">
<ul>
<li><a href="index.html">Home</a>
</li>
<li><a href="about.html">About</a>
</li>
<li><a href="podcast.html">Podcast</a>
</li>
<li><a href="location.html">Location</a>
</li>
<li><a href="contact.html">Contact</a>
</li>
</ul>
</nav>
<main>
<h2 class="podcast-header">Podcast Schedule</h2>
<table>
<tr>
<th>Date</th><th>Show</th>
</tr>
<tr><td><time timedate="2012-05-13">June 13, 2012</time></td><td><audio controls>
<source src="./audio/sample.mp3" type="audio/mp3" />
<source src="./audio/sample.ogg" type="audio/ogg" />
</audio></td></tr>
<tr><td><time timedate="2012-05-13">June 13, 2012</time></td><td><audio controls>
<source src="./audio/sample.mp3" type="audio/mp3" />
<source src="./audio/sample.ogg" type="audio/ogg" />
</audio></td></tr>
<tr><td><time timedate="2012-05-13">June 13, 2012</time></td><td><audio controls>
<source src="./audio/sample.mp3" type="audio/mp3" />
<source src="./audio/sample.ogg" type="audio/ogg" />
</audio></td></tr>
<tr><td><time timedate="2012-05-13">June 13, 2012</time></td><td><audio controls>
<source src="./audio/sample.mp3" type="audio/mp3" />
<source src="./audio/sample.ogg" type="audio/ogg" />
</audio></td></tr>
<tr><td><time timedate="2012-05-13">June 13, 2012</time></td><td><audio controls>
<source src="./audio/sample.mp3" type="audio/mp3" />
<source src="./audio/sample.ogg" type="audio/ogg" />
</audio></td></tr>
</table>
</main>
<nav class="blur">
<ul>
<li><a href="index.html">Home</a>
</li>
<li><a href="about.html">About</a>
</li>
<li><a href="podcast.html">Podcast</a>
</li>
<li><a href="location.html">Location</a>
</li>
<li><a href="contact.html">Contact</a>
</li>
</ul>
</nav>
<footer>
<p>Content of this website for educational purposes only at this point in time.</p>
</footer>
</div>
</body>
</html>