-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmorseCodePage.html
56 lines (47 loc) · 1.63 KB
/
morseCodePage.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
<!DOCTYPE html>
<html lang="en">
<head>
<script src = "https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Explanation</title>
<style>
body {
background-image: url('/background.jpg');
}
h1 {
text-align: center;
}
.center {
text-align: center;
display: block;
margin-left: auto;
margin-right: auto;
width: 15%
}
.showcase {
text-align: center;
margin-top: 20px;
margin-bottom: 20px;
}
.btn-primary {
border-radius: 8px;
background-color: rgba(255, 183, 255, 1);
color: black;
padding: 10px;
width: 175px;
transition-duration: 0.4s;
}
.btn-primary:hover {
box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
background-color: white;
cursor: pointer;
}
</style>
</head>
<body class="jumbotron text-center" style="color:rgba(255, 183, 255, 1);" >
<h1>Hi</h1>
<button class="center btn btn-primary my-2 missYou_btn">Click Here</button>
<script type="module" src="/morseCodeVibrations.js"></script>
</body>
</html>