35 lines
588 B
HTML
35 lines
588 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>My Simple Website</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
background-color: #f0f0f0;
|
|
}
|
|
|
|
button {
|
|
background-color: #4CAF50;
|
|
color: white;
|
|
padding: 10px 20px;
|
|
border: none;
|
|
border-radius: 5px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: #3e8e41;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Welcome to my website!</h1>
|
|
|
|
<button id="button-1">Button 1</button>
|
|
<button id="button-2">Button 2</button>
|
|
<button id="button-3">Button 3</button>
|
|
|
|
<p>This is some sample text.</p>
|
|
</body>
|
|
</html>
|