-
Notifications
You must be signed in to change notification settings - Fork 0
/
page31.html
60 lines (50 loc) · 1.33 KB
/
page31.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>
<style>
.button {
display: inline-block;
padding: 15px 25px;
font-size: 24px;
cursor: pointer;
text-align: center;
text-decoration: none;
outline: none;
color: #fff;
background-color: dodgerblue;
border: none;
border-radius: 15px;
}
.button:hover {background-color:mediumblue}
.button:active {
background-color: #mediumblue;
transform: translateY(4px);
}
</style>
<head>
<title>Ad Astra Media</title>
<link href= "main.css" rel="stylesheet" type="text/css" />
</head>
<body>
<center><font color= dodgerblue> <h1>Ad Astra Media</h1>
<center><h2>Good Night Little Veterinarian Audio</h2></center> </font>
<center>
<p style="font-family:cursive;font-size:48px;">
The End </p>
</center>
<center>
<audio controls>
<source src="theEnd.mp3" type="audio/mpeg">
</audio>
</center>
<center><p>
<a href="/Ad_Astra_Audiobook/page30.html">
<button class="button">Prev</button>
</a>
<a href="/Ad_Astra_Audiobook/page32.html">
<button class="button">Next</button>
</a>
</p></center>
<center>Click <a href= "/Ad_Astra_Audiobook/index.html"><font color= dodgerblue>here</font></a> to go back home!
</center>
</body>
</html>