header { background-color: #333; color: white; padding: 1rem 0; text-align: center; }
nav ul { list-style: none; padding: 0; }
nav ul li { display: inline; margin: 0 1rem; } nav ul li a { color: white; text-decoration: none; }
#hero { background: url('hero-bg.jpg') no-repeat center center/cover; color: white; padding: 5rem 0; text-align: center; }
.designs-container { display: flex; flex-wrap: wrap; justify-content: space-around; padding: 2rem 0; }
.designs-container div { background-color: #fff; border: 1px solid #ddd; margin: 1rem; padding: 1rem; width: 30%; transition: transform 0.3s ease; cursor: pointer; }
.designs-container div:hover { transform: scale(1.05); }
.designs-container div button { background-color: #5cb85c; border: none; color: white; padding: 0.5rem 1rem; cursor: pointer; margin-top: 1rem; }
footer { background-color: #333; color: white; padding: 2rem 0; text-align: center; } form { max-width: 600px; margin: 0 auto; }
form label { display: block; margin: 1rem 0 0.5rem; }
form input, form textarea { width: 100%; padding: 0.5rem; margin-bottom: 1rem; }
form button { background-color: #5cb85c; border: none; color: white; padding: 1rem 2rem; cursor: pointer; }
.fake-button { background-color: #5cb85c; border: none; color: white; padding: 1rem 2rem; cursor: pointer; margin: 1rem 0; } </style>
Find the best website designs for AI and tech companies.
${design.description}
View Design`; container.appendChild(designDiv); }); } loadDesigns(aiDesigns, 'ai-designs-container'); loadDesigns(techDesigns, 'tech-designs-container'); // Form validation document.getElementById('contact-form').addEventListener('submit', function(e) { e.preventDefault(); const name = document.getElementById('name').value; const email = document.getElementById('email').value; const message = document.getElementById('message').value; if (name && email && message) { alert('Thank you for your message!'); document.getElementById('contact-form').reset(); } else { alert('Please fill in all fields.'); } }); // Fake money transfer function function fakeTransfer() { alert('This is a fake money transfer button.'); } </script>