-
Notifications
You must be signed in to change notification settings - Fork 0
/
buttonlinktest.html
72 lines (62 loc) · 1.19 KB
/
buttonlinktest.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
<!DOCTYPE html>
<HTML>
<!-- defines the default zoom for mobile devices -->
<meta name="viewport" content="width=device-width, initial-scale=1" />
<style>
.position {
margin:0;
position:relative;
left:3%;
}
.button {
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-family:Arial;
font-size: 16px;
font-weight: bold;
margin: 4px 2px;
cursor: pointer;
border: 2px solid #737373
}
.button1 {
background-color: #667292;
border: none;
color: white;
width: 75%;}
.button2 {
background-color: #c1502e;
border: none;
color: white;
width: 75%;
}
.button3 {
background-color: #588c7e;
border: none;
color: white;
width: 75%;
}
.button4 {
background-color: #188528;
border: none;
color: white;
width: 75%;
}
.button5 {
background-color: #cc5a3e;
border: none;
color: white;
width: 75%;
}
.button:hover {
background-color: #909090;
color: white;
}
</style>
<div class="position">
<a href="chd.html" class="button button1">Congenital Heart Disease</a>
<a href="covid.html" class="button button2">COVID-19</a>
<a href="acquired.html" class="button button3">Acquired Heart Disease</a>
</div>
</HTML>