<!doctype html>
Is very nice
<title>Harry Phalak's Photo</title> <style> body { font-family: Arial, sans-serif; text-align: center; margin-top: 50px; } h1 { font-size: 5em; font-weight: bold; color: black; transition: all 1s; } .golden { font-variant: small-caps; color: goldenrod; } </style> <script> function toggleStyle() { const nameElement = document.getElementById("name"); nameElement.classList.toggle("golden"); } window.onload = function() { setInterval(toggleStyle, 1000); // Change every 1 second } </script> <title>Harry Moheb's Box</title> <style> body { font-family: Arial, sans-serif; text-align: center; margin-top: 50px; } .circle { width: 300px; height: 300px; background-color: black; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto; transition: background-color 1s; } h1 { color: black; font-size: 2em; transition: color 1s; } .golden { color: goldenrod; } .yellow-bg { background-color: #FFFFCC; /* Mild yellowish color */ } </style> <script> </script>
