ช่องทางรับฟังความเห็น โรงเรียนอนุบาลเมืองลำปาง (ธงชัยศึกษา)
<!DOCTYPE html>
<html>
<head>
<style>
.report-container {
display: flex;
justify-content: center;
align-items: center;
padding: 20px;
font-family: 'Sarabun', sans-serif;
}
.btn-safety {
position: relative;
display: flex;
align-items: center;
gap: 15px;
padding: 18px 35px;
background: linear-gradient(135deg, #ff00cc, #3333ff);
color: white;
text-decoration: none;
font-size: 20px;
font-weight: bold;
border-radius: 50px;
box-shadow: 0 10px 20px rgba(51, 51, 255, 0.3);
transition: all 0.4s ease;
overflow: hidden;
border: 2px solid rgba(255, 255, 255, 0.2);
cursor: pointer;
}
.btn-safety:hover {
transform: translateY(-5px) scale(1.05);
box-shadow: 0 15px 30px rgba(255, 0, 204, 0.5);
border: 2px solid rgba(255, 255, 255, 0.5);
}
/* Effect แสงวิบวับ */
.btn-safety::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: rgba(255, 255, 255, 0.2);
transform: rotate(45deg);
transition: all 0.6s ease;
}
.btn-safety:hover::before {
left: 100%;
}
.icon-alert {
width: 30px;
height: 30px;
background: white;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
color: #3333ff;
font-size: 22px;
box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}
.text-sub {
font-size: 12px;
display: block;
font-weight: normal;
opacity: 0.9;
}
</style>
</head>
<body>
<div class="report-container">
<a href="URL_GOOGLE_FORM_ของคุณ" target="_blank" class="btn-safety">
<div class="icon-alert">⚠️</div>
<div>
แจ้งเหตุความไม่ปลอดภัย
<span class="text-sub">โรงเรียนอนุบาลเมืองลำปาง(ธงชัยศึกษา)</span>
</div>
</a>
</div>
</body>
</html>