-
Notifications
You must be signed in to change notification settings - Fork 0
/
construction.php
46 lines (43 loc) · 1.37 KB
/
construction.php
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
<!DOCTYPE html>
<html lang="th">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>อยู่ระหว่างการพัฒนา</title>
<link rel="stylesheet" href="css/style-common.css">
<style>
h1 {
color: #333;
}
p {
line-height: 1.6;
color: #666;
}
.button {
display: inline-block;
margin-top: 20px;
padding: 10px 20px;
background-color: #f13f31;
color: #fff;
text-decoration: none;
border-radius: 5px;
font-size: 16px;
}
.button:hover {
background-color: #d12e25;
}
</style>
</head>
<body>
<header>
<h1 style="color: white;">อยู่ระหว่างการพัฒนา</h1>
</header>
<section>
<h2>หน้านี้ยังอยู่ระหว่างการพัฒนา</h2>
<p>กรุณากลับมาตรวจสอบใหม่ในภายหลัง ขอบคุณที่ให้ความสนใจ</p>
<div style="text-align: center;">
<a href="index.php" class="button">กลับไปยังหน้าหลัก</a>
</div>
</section>
</body>
</html>