-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbirthday_wish.html
45 lines (41 loc) · 1.19 KB
/
birthday_wish.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
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>生日快乐,亲爱的朋友!</title>
<style>
body {
background-color: #ffebcd;
font-family: 'Arial', sans-serif;
text-align: center;
padding: 50px;
}
h1 {
color: #ff6347;
}
p {
font-size: 20px;
color: #ff4500;
}
.button {
padding: 15px 30px;
background-color: #ff6347;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
}
.button:hover {
background-color: #ff4500;
}
</style>
</head>
<body>
<h1>生日快乐,亲爱的朋友!</h1>
<p>今天是你的特别日子,愿你永远快乐,健康,幸福!🎉</p>
<p>祝你度过一个难忘的生日,迎接更加美好的每一天!🎂</p>
<button class="button" onclick="window.location.reload();">重新加载页面</button>
</body>
</html>