-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (52 loc) · 1.36 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Khánh Băng</title>
<style>
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center; /* Can lề ngang */
align-items: center; /* Can lề dọc */
height: 100vh;
margin: 0;
background: url('kb.jpg') no-repeat center center fixed;
background-size: cover;
color: white;
}
.content {
text-align: center;
}
h1 {
font-size: 3em;
text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}
button {
padding: 15px 30px;
font-size: 1.5em;
background-color: #007BFF;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
margin-top: 20px;
}
button:hover {
background-color: #0056b3;
}
</style>
</head>
<body>
<div class="content">
<h1>Khánh Băng (Vợ iu Cha Eun Woo)</h1>
<button onclick="start()">Start</button>
</div>
<script>
function start() {
window.location.href = 'butterfly_2.html';
}
</script>
</body>
</html>