-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (38 loc) · 1.05 KB
/
index.html
File metadata and controls
40 lines (38 loc) · 1.05 KB
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
36
37
38
39
40
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Christopher Morse</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
max-width: 800px;
margin: 0 auto;
padding: 2rem;
line-height: 1.6;
color: #333;
}
h1 {
border-bottom: 2px solid #333;
padding-bottom: 0.5rem;
}
.contact {
margin-top: 2rem;
padding: 1rem;
background: #f8f9fa;
border-radius: 8px;
}
</style>
</head>
<body>
<h1>Christopher Morse</h1>
<p>Welcome to my personal website.</p>
<h2>About</h2>
<p>This site is currently under construction. Check back soon for updates.</p>
<div class="contact">
<h3>Contact</h3>
<p>Find me on <a href="https://github.com/christophermorse">GitHub</a>.</p>
</div>
</body>
</html>