<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Page</title>
<style>
/* Add your CSS styles here */
body {
font-family: Arial, sans-serif;
text-align: center;
margin-top: 50px;
}
</style>
</head>
<body>
<h1>Welcome!</h1>
<p>Start editing to see changes</p>
<script>
// Write your JavaScript code here
console.log('Hello from JavaScript!');
</script>
</body>
</html>