-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex1.html
75 lines (66 loc) · 1.97 KB
/
index1.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
<!DOCTYPE html>
<html>
<head>
<style>
.vertical-center {
margin: 0;
position: absolute;
top: 50%;
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}
.button {
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
background-color: violet;
}
body {
background-image: url('background.jpg');
background-repeat: no-repeat;
background-attachment: fixed;
background-size: 100% 100%;
}
.main_heading {
font-size: 150px;
font-family: Verdana, Geneva, Tahoma, sans-serif;
color: rgb(255, 0, 255);
text-align: center;
}
.name {
font-size: 130px;
font-family: Verdana, Geneva, Tahoma, sans-serif;
color: lightblue;
text-align: center;
}
</style>
<title>One word at a time</title>
</head>
<body >
<p>Song credits: Pharrel Williams "Happy"</p>
<div>
<h1 class = 'main_heading'>Welcome to</h1></td>
</div>
<div>
<h1 class = 'name'>One Word at Time</h1>
</div>
<div>
<div class = 'vertical-center'>
<button type = 'button' class = 'button' >
Click here to play!
</button>
</div>
</div>
</table>
<audio controls autoplay>
<source src = 'happy.mp3' type = 'audio/mpeg'>
</audio>
#Hi, I can see your work
</body>
</html>