-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
80 lines (77 loc) · 2.06 KB
/
index.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
76
77
78
79
80
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-07FB7H2QX4"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-07FB7H2QX4');
</script>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<style>
body {
padding-top: 20px;
background: #F7EDE2;
position:absolute;
left:50%;
transform: translate(-50%);
margin:0;
overflow-x:hidden;
}
br {
line-height: 150%;
}
#hnag {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 70px;
color: #F28482;
display: block;
font-weight: bold;
text-align: center;
}
button {
background-color: #F6BD60;
color: white;
width: 100%;
height: 50px;
font-size: 20px;
}
#aboutme {
display: none;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 20px;
background-color: #F5CAC3;
padding: 10px;
width: 100%;
height: auto;
color: #84A59D;
font-style: italic;
}
</style>
</head>
<body>
<a id = "hnag"> 🐰 MUỐN ĂN GÌ ? </a>
<br>
<button id = "rdbyfd" onclick="location.href = 'rdbyfd.html'"> Ăn gì cũng được </button>
<br>
<img src="dance.gif" alt="Dacing bunny" id = "dance">
<img src="dance.gif" alt="Dacing bunny" id = "dance">
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-7310599997431097"
crossorigin="anonymous"></script>
<script type="text/javascript">
var dpl = false;
function displayabt() {
if (dpl) {
document.getElementById('aboutme').style.display = "none";
dpl = false;
} else {
document.getElementById('aboutme').style.display = "block";
dpl = true;
}
}
</script>
</body>
</html>