<!DOCTYPE html>
<html lang="id">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Running Text</title>
<style>
*{
margin:0;
padding:0;
box-sizing:border-box;
}
body{
background:#111;
display:flex;
justify-content:center;
align-items:center;
height:100vh;
font-family:Arial, sans-serif;
}
.marquee{
width:100%;
height:80px;
background:#0066cc;
overflow:hidden;
position:relative;
border-top:4px solid yellow;
border-bottom:4px solid yellow;
}
.marquee span{
position:absolute;
white-space:nowrap;
font-size:42px;
font-weight:bold;
color:white;
line-height:80px;
animation:jalan 12s linear infinite;
}
@keyframes jalan{
from{
transform:translateX(100%);
}
to{
transform:translateX(-100%);
}
}
</style>
</head>
<body>
<div class="marquee">
<span id="teks">
SELAMAT DATANG DI SMK MUHAMMADIYAH PARUNG • TAHUN PELAJARAN 2026/2027 • SEMOGA HARI ANDA MENYENANGKAN
</span>
</div>
<script>
// Ubah isi teks di sini
document.getElementById("teks").innerHTML =
"🎉 SELAMAT DATANG DI SMK MUHAMMADIYAH PARUNG • 📚 BELAJAR DENGAN SEMANGAT • 🇮🇩 INDONESIA MAJU •";
</script>
</body>
</html>

0 Komentar