Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CNAME
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
thegemstone.org
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
# GitHub Pages
# loganfinney27.github.io

A simple personal site hosted with [GitHub Pages](https://pages.github.com/).
Comment on lines +1 to +3
Copy link

Copilot AI Apr 11, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

README title still uses the GitHub Pages default domain (loganfinney27.github.io), but this PR adds a custom domain via CNAME (thegemstone.org). Consider updating the README heading/description to reflect the canonical public URL to avoid confusion for readers.

Suggested change
# loganfinney27.github.io
A simple personal site hosted with [GitHub Pages](https://pages.github.com/).
# thegemstone.org
A simple personal site available at [thegemstone.org](https://thegemstone.org/), hosted with [GitHub Pages](https://pages.github.com/).

Copilot uses AI. Check for mistakes.
22 changes: 3 additions & 19 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,23 +1,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<!DOCTYPE html>
<html>
Copy link

Copilot AI Apr 11, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

index.html omits a <head> section with at least a charset declaration and a <title>. Without an explicit charset, the document relies on server/browser defaults, and without a title the page is less usable (tabs/bookmarks) and less accessible/SEO-friendly. Consider adding <head><meta charset="utf-8"><title>…</title></head> while keeping the body content minimal.

Suggested change
<html>
<html>
<head>
<meta charset="utf-8">
<title>Hello World</title>
</head>

Copilot uses AI. Check for mistakes.
Copy link

Copilot AI Apr 11, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The root <html> element is missing a lang attribute. Adding lang="en" (or the appropriate locale) improves screen reader behavior and general accessibility.

Suggested change
<html>
<html lang="en">

Copilot uses AI. Check for mistakes.
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="Content-Style-Type" content="text/css">
<title></title>
<meta name="Generator" content="Cocoa HTML Writer">
<meta name="CocoaVersion" content="2113.65">
<style type="text/css">
p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 17.0px Times; color: #000000; -webkit-text-stroke: #eae96f}
span.s1 {font-kerning: none}
</style>
</head>
<body>
<p class="p1"><span class="s1">&lt;!DOCTYPE html&gt;</span></p>
<p class="p1"><span class="s1">&lt;html&gt;</span></p>
<p class="p1"><span class="s1">&lt;body&gt;</span></p>
<p class="p1"><span class="s1">&lt;h1&gt;Hello World&lt;/h1&gt;</span></p>
<p class="p1"><span class="s1">&lt;p&gt;I'm hosted with GitHub Pages.&lt;/p&gt;</span></p>
<p class="p1"><span class="s1">&lt;/body&gt;</span></p>
<p class="p1"><span class="s1">&lt;/html&gt;</span></p>
<h1>Hello World</h1>
<p>I'm hosted with GitHub Pages.</p>
</body>
</html>