24 lines
460 B
HTML
24 lines
460 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>Your Website Title</title>
|
||
|
<style>
|
||
|
body {
|
||
|
font-family: Arial, sans-serif;
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>Welcome to Your Website</h1>
|
||
|
<p>This is a single-file website.</p>
|
||
|
|
||
|
<script>
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|
||
|
|