-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHome.html
More file actions
144 lines (124 loc) · 3.37 KB
/
Home.html
File metadata and controls
144 lines (124 loc) · 3.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<!DOCTYPE html>
<html lang="th">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>ระบบ AI ของฉัน</title>
<style>
/* Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Helvetica Neue', sans-serif;
background-color: white;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
gap: 50px;
}
h1 {
color: #333;
font-size: 24px;
margin-bottom: 30px;
}
.button-container-top {
display: flex;
flex-direction: column;
gap: 20px;
}
.btn-top {
background-color: orange;
color: white;
padding: 16px 24px;
border-radius: 12px;
font-size: 18px;
font-weight: bold;
cursor: pointer;
transition: all 0.3s ease;
text-align: center;
width: 200px;
text-decoration: none;
}
.btn-top:nth-child(2) {
background-color: purple;
}
.btn-top:nth-child(3) {
background-color: green;
}
.btn-top:hover {
transform: scale(1.05);
box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
.btn-top:active {
transform: scale(0.98);
}
.button-container-bottom {
display: flex;
gap: 20px;
width: 100%;
max-width: 400px;
margin-bottom: 50px;
}
.btn-bottom {
background-color: white;
color: #333;
padding: 16px 24px;
border-radius: 12px;
font-size: 24px;
font-weight: bold;
border: 2px solid transparent;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
text-decoration: none;
flex: 1;
text-align: center;
}
.btn-bottom:hover {
transform: scale(1.05);
box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
.btn-bottom:active {
transform: scale(0.98);
}
.btn-bottom.home {
background-color: #e74c3c;
color: white;
}
.btn-bottom.ai {
background-color: #2ecc71;
color: white;
}
.btn-bottom.plant {
background-color: #007bff;
color: white;
}
.btn-bottom.menu {
background-color: #ff9900;
color: white;
}
</style>
</head>
<body>
<!-- ข้อความหัวเรื่อง -->
<h1>กรุณาเลือกระบบ AI ที่ต้องการใช้งาน</h1>
<!-- กล่องปุ่มบน (แนวตั้ง) -->
<div class="button-container-top">
<a href="AI3.html" class="btn-top">ใช้งาน Durian AI</a>
<a href="AI2.html" class="btn-top">ใช้งาน Mangosteen AI</a>
<a href="AI1.html" class="btn-top">ใช้งาน Tetedd2 AI</a>
</div>
<!-- กล่องปุ่มล่าง (แนวนอน) -->
<div class="button-container-bottom">
<a href="Home999.html" class="btn-bottom home">HOME</a>
<a href="Home.html" class="btn-bottom ai">AI</a>
<a href="Home555.html" class="btn-bottom plant">วิธีปลูก</a>
<a href="menu.html" class="btn-bottom menu">MENU</a>
</div>
</body>
</html>