blob: c8bd7af74774e24364de62d85f4756759f6cf8b3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
<!DOCTYPE html>
<html lang="en">
<head>
<title>Page Title Goes Here</title>
<style>
body {
margin: 0;
}
header {
display: flex;
min-height: 100vh;
justify-content: center;
align-items: center;
background-color: #227093;
}
h1 {
color: #FFFFFF;
font-family: Arial, sans-serif;
}
</style>
</head>
<body>
<header>
<h1>Centered Heading</h1>
</header>
<main>
Additional page content and navigation go here
</main>
</body>
</html>
|