26 lines
601 B
HTML
26 lines
601 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Page Title</title>
|
|
<!-- Link to an external CSS file -->
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
|
|
<body>
|
|
<header>
|
|
<h1>Welcome</h1>
|
|
</header>
|
|
<main>
|
|
<p>This is the main content of the page.</p>
|
|
</main>
|
|
<footer>
|
|
<p>© 2026 My Website</p>
|
|
</footer>
|
|
<!-- Link to an external JavaScript file -->
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html>
|
|
|