-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (38 loc) · 1.7 KB
/
index.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
<!DOCTYPE html>
<head> <!-- Set character encoding, give title, and link to CSS file -->
<meta charset="UTF-8">
<title> Wayne Paige - Savannah, GA voice over artist </title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Div tags used to create text boxes; 2 boxes, one inside of the other; main-text class defines style for most text.
sub-classes used to define variations in style -->
<div class="main-text"> <!-- main-text class to style most text on the page -->
<h1 class="title"> Wayne Paige Voice Overs </h1>
<h2 class="sub-title"> Savannah, GA Voice Artist </h2>
<h3 class="contact-info"> 912-675-2733 | <a href="mailto:wayne@waynepaigevo.com"> Wayne@WaynePaigeVO.com </a> </h3>
<h4 class="demo-title"> Demos and Published Work: </h4>
<!-- Audio controls for MP3s -->
<div class="contact-info">
Basic Demo <br>
<audio controls src="audio/WPaige_D1.mp3"> Your browser does not support playback. </audio> <br>
<br>
Adventure <br>
<audio controls src="audio/ToF.mp3"> Your browser does not support playback. </audio> <br>
<br>
Literature <br>
<audio controls src="audio/SummerBoy.mp3"> Your browser does not support playback. </audio> <br>
<br>
Romance <br>
<audio controls src="audio/Purgatory.mp3"> Your browser does not support playback. </audio> <br>
<br>
Short Story <br>
<audio controls src="audio/DarkonMountain.mp3"> Your browser does not support playback. </audio> <br>
<br>
</div>
<!-- Provide link to Wayne Paige's titles on Audible.com -->
<div class="contact-info">
<a href="https://goo.gl/pDKYJb"> Wayne Paige on Audible.com </a>
</div>
</div>
</body>