Welcome to Getting Started
Start your journey with us and explore the world of possibilities.
CSS (styles.css):
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
text-align: center;
padding: 20px;
}
section {
background-color: #fff;
padding: 20px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1 {
color: #333;
}
p {
color: #666;
}
button {
padding: 10px 20px;
background-color: #007bff;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s;
}
button:hover {
background-color: #0056b3;
}
JavaScript (script.js):
document.getElementById('startButton').addEventListener('click', function() {
alert('Let the journey begin! Get ready to explore.');
});
This code creates a simple webpage with a "Get Started" section and a button that triggers an alert when clicked. The CSS styles the layout and the button for an interactive user experience.