Skip to content

Commit 4a287e5

Browse files
committed
Hello world
:-)
0 parents  commit 4a287e5

File tree

3 files changed

+57
-0
lines changed

3 files changed

+57
-0
lines changed

.gitignore

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# macOS system files
2+
.DS_Store
3+
.AppleDouble
4+
.LSOverride
5+
Icon?
6+
._*
7+
8+
# Thumbnails
9+
._*
10+
11+
# Files that might appear on external disks
12+
.Spotlight-V100
13+
.Trashes
14+
15+
# Editors
16+
.vscode/
17+
.idea/
18+
*.swp

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# mthomason.github.io
2+
3+
Personal site hosted on GitHub Pages.

index.html

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<meta name="viewport" content="width=device-width,initial-scale=1">
6+
<meta name="description" content="Simple HTML5 page for mthomason.github.io">
7+
<title>mthomason.github.io</title>
8+
9+
<!-- Minimal sensible defaults -->
10+
<link rel="author" href="https://mthomason.github.io/">
11+
<meta name="theme-color" content="#ffffff">
12+
13+
<style>
14+
/* Lightweight, non-intrusive styling (optional) */
15+
:root { font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; }
16+
html,body { height:100%; margin:0; }
17+
body {
18+
display:flex;
19+
align-items:center;
20+
justify-content:center;
21+
background-color:#fff;
22+
color:#111;
23+
line-height:1.25;
24+
padding:1rem;
25+
}
26+
main { text-align:center; }
27+
h1 { margin:0; font-size:1.25rem; font-weight:600; }
28+
</style>
29+
</head>
30+
<body>
31+
<main role="main">
32+
<h1>mthomason.github.io</h1>
33+
</main>
34+
</body>
35+
</html>
36+

0 commit comments

Comments
 (0)