-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhealthy.html
38 lines (37 loc) · 881 Bytes
/
healthy.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>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Healthy</title>
<style>
.container{
position: relative;
}
.center{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 50px;
text-align: center;
}
img{
width: 100%;
height: auto;
opacity: 0.3;
}
</style>
</head>
<body>
<div class="container">
<button onclick="gobackclick()">goback</button>
<img src="http://peakhealthcalgary.com/wp-content/uploads/2013/02/shutterstock_70838677.jpg">
<div class="center">Your heart is healthy :)</div>
</div>
<script>
function gobackclick() {
window.location = "/";
}
</script>
</body>
</html>