-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththanks.html
More file actions
56 lines (48 loc) · 1.37 KB
/
Copy paththanks.html
File metadata and controls
56 lines (48 loc) · 1.37 KB
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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>お問い合わせ完了チュー!</title>
<style>
body {
font-family: "Yu Gothic", sans-serif;
background: linear-gradient(135deg, #e0e0e0, #fff8e1);
text-align: center;
padding: 50px;
min-height: 100vh;
margin: 0;
}
h1 {
color: #b5651d;
font-size: 2em;
}
img {
width: 200px;
margin: 20px 0;
}
p {
font-size: 1.2em;
color: #333;
}
a {
display: inline-block;
margin-top: 20px;
padding: 10px 20px;
background: linear-gradient(to right, #ffcc80, #ffe0b2);
color: #000;
text-decoration: none;
border-radius: 10px;
transition: background 0.3s ease;
}
a:hover {
background: linear-gradient(to right, #ffe0b2, #ffcc80);
}
</style>
</head>
<body>
<h1>お問い合わせ完了チュー!</h1>
<img src="img/MouseClear.png" alt="完了ネズミ" />
<p>ネズミがメッセージを受け取ったチュー。ありがとうチュー!</p>
<a href="/">トップに戻るチュー</a>
</body>
</html>