-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbad.html
More file actions
103 lines (91 loc) · 2.99 KB
/
bad.html
File metadata and controls
103 lines (91 loc) · 2.99 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
<!DOCTYPE html>
<html lang="th">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> สาเหตุของโรคใบไหม้ </title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: #f4f7f6;
position: relative;
}
h1 {
color: #333;
text-align: center;
margin-bottom: 20px;
}
/* รูปภาพเนื้อหา */
.content-image {
max-width: 25%;
height: auto;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
/* ปุ่มย้อนกลับ (มุมซ้ายบน) */
.back-button {
position: absolute;
top: 40px;
left: 40px;
display: flex;
align-items: center;
justify-content: center;
background-color: white;
border-radius: 50%;
width: 40px;
height: 40px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
text-decoration: none;
border: none;
cursor: pointer;
background-color: transparent;
}
.back-button img {
width: 60px;
height: 60px;
transition: transform 0.2s ease;
}
.back-button img:hover {
transform: scale(1.1);
}
/* ปุ่มปิดหน้าเว็บ (มุมขวาบน) */
.close-button {
position: absolute;
top: 40px;
right: 40px;
background-color: transparent;
border: none;
cursor: pointer;
}
.close-button img {
width: 60px;
height: 60px;
transition: transform 0.2s ease;
}
.close-button img:hover {
transform: scale(1.1);
}
</style>
</head>
<body>
<!-- หัวข้อ -->
<h1>สาเหตุของโรคใบไหม้</h1>
<!-- รูปภาพแทนเนื้อหา -->
<img src="12.png" alt="สาเหตุของโรคใบไหม้" class="content-image">
<!-- ปุ่มย้อนกลับ -->
<a href="AI1.html" class="back-button">
<img src="home.png" alt="ย้อนกลับไปหน้ากล้อง">
</a>
<!-- ปุ่มปิดหน้าเว็บ -->
<button onclick="window.close()" class="close-button">
<img src="11.png" alt="ปิดหน้านี้">
</button>
</body>
</html>