working on the web side of things

This commit is contained in:
2025-10-06 10:58:33 -07:00
parent b750f76cd7
commit d3ca8d920a
6 changed files with 125 additions and 27 deletions

34
web/index.html Normal file
View File

@@ -0,0 +1,34 @@
<!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>