|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="id"> |
| 3 | +<head> |
| 4 | + <meta charset="UTF-8"> |
| 5 | + <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 6 | + <title>Untuk Michelle Angelin 🌸</title> |
| 7 | + <style> |
| 8 | + body { |
| 9 | + margin: 0; |
| 10 | + font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; |
| 11 | + background: #fff0f6; |
| 12 | + color: #333; |
| 13 | + text-align: center; |
| 14 | + } |
| 15 | + section { |
| 16 | + padding: 60px 20px; |
| 17 | + } |
| 18 | + h1 { |
| 19 | + font-size: 2.5em; |
| 20 | + color: #d6336c; |
| 21 | + } |
| 22 | + p { |
| 23 | + font-size: 1.2em; |
| 24 | + max-width: 600px; |
| 25 | + margin: 0 auto; |
| 26 | + } |
| 27 | + .final { |
| 28 | + background: #ffe3ec; |
| 29 | + padding: 80px 20px; |
| 30 | + } |
| 31 | + .btn { |
| 32 | + background-color: #d6336c; |
| 33 | + color: white; |
| 34 | + padding: 15px 30px; |
| 35 | + font-size: 1.2em; |
| 36 | + border: none; |
| 37 | + border-radius: 10px; |
| 38 | + cursor: pointer; |
| 39 | + margin-top: 20px; |
| 40 | + transition: background 0.3s; |
| 41 | + } |
| 42 | + .btn:hover { |
| 43 | + background-color: #c2255c; |
| 44 | + } |
| 45 | + .yes-message { |
| 46 | + display: none; |
| 47 | + font-size: 1.8em; |
| 48 | + color: #d6336c; |
| 49 | + margin-top: 30px; |
| 50 | + } |
| 51 | + .no-message { |
| 52 | + display: none; |
| 53 | + font-size: 1.8em; |
| 54 | + color: #d6336c; |
| 55 | + margin-top: 30px; |
| 56 | + } |
| 57 | + </style> |
| 58 | +</head> |
| 59 | +<body> |
| 60 | + <section> |
| 61 | + <h1>Hai, Ngel ✨</h1> |
| 62 | + <p>Website ini aku buat khusus buat kamu. Scroll e pelan-pelan ya...</p> |
| 63 | + </section> |
| 64 | + |
| 65 | + <section> |
| 66 | + <h1>Kita Udah Lewat Banyak Hal</h1> |
| 67 | + <p>Dari chatingan teruss, tlfn hampir tiap malem, sampai km ngambek yang susah untuk di tenangin 🤣.</p> |
| 68 | + </section> |
| 69 | + |
| 70 | + <section> |
| 71 | + <h1>Aku Suka Kamu dan Aku Sayang Kamu</h1> |
| 72 | + <p>Jujur ae, makin lama aku makin suka. Cara kamu ketawa, cara kamu peduli, bahkan hal kecil seng kamu lakuin itu bikin senyum dewe.</p> |
| 73 | + <p>Sampek puncak e km nonton mbe aku, jujur aku suka pol waktu km jalan mbe aku</p> |
| 74 | + <p>Tapi aku ga berani buat ngungkapin atau buat pegang tanganmu dan lainnya</p> |
| 75 | + <p>Jadi.... </p> |
| 76 | + </section> |
| 77 | + |
| 78 | + <section class="final"> |
| 79 | + <h1>Mau Gak Jadi Pacarku?</h1> |
| 80 | + <button class="btn" onclick="showMessage()">YES! 💖</button> |
| 81 | + <div class="yes-message" id="yesMessage">YAYY! 🎉 Aku janji bakal jagain kamu baik-baik 🥰 |
| 82 | + <br>Love you selalu Sayang 🤗 |
| 83 | + </div> |
| 84 | + |
| 85 | + |
| 86 | + <button class="btn" id="noBtn" onclick="hideNo()">No 😢</button> |
| 87 | + <div class="no-message" id="noMessage">YEKKK, Tombol e Ilang |
| 88 | + <br>Coba lagi |
| 89 | + </div> |
| 90 | + |
| 91 | + </section> |
| 92 | + |
| 93 | + <script> |
| 94 | + function showMessage() { |
| 95 | + document.getElementById("yesMessage").style.display = "block"; |
| 96 | + document.getElementById("noBtn").style.display = "none"; |
| 97 | + document.getElementById("noMessage").style.display = "none"; |
| 98 | + } |
| 99 | + function hideNo() { |
| 100 | + document.getElementById("noBtn").style.display = "none"; |
| 101 | + document.getElementById("noMessage").style.display = "block"; |
| 102 | + } |
| 103 | + </script> |
| 104 | +</body> |
| 105 | +</html> |
0 commit comments