HTML
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>My Website</title>
<style>
/* Add your CSS styles here */
body {
font-family: Arial, sans-serif;
background-color: #f2f2f2;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
text-align: center;
}
h1 {
color: #333;
margin-bottom: 20px;
}
</style>
</head>
<body>
<div class="container">
<h1>Welcome to My Website</h1>
<!-- Add your HTML content here -->
</div>
<!-- Add your JavaScript here -->
<script>
// Your JavaScript code goes here
</script>
</body>
</html>
Comments
Post a Comment