Skip to content
Open
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
31 changes: 31 additions & 0 deletions index1001.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Sample Website</title>
<style>
body { font-family: Arial, sans-serif; margin: 0; padding: 20px; background-color: #f4f4f4; color: #333; }
header { background: #4CAF50; color: white; padding: 15px; text-align: center; }
main { max-width: 800px; margin: 20px auto; background: white; padding: 20px; border-radius: 8px; box-shadow: 0 0 10px rgba(0,0,0,0.1); }
footer { text-align: center; margin-top: 20px; color: #777; }
</style>
</head>
<body>
<header>
<h1>Welcome to My GitHub Pages Site!</h1>
</header>
<main>
<h2>This is a Sample Page</h2>
<p>This static HTML page is hosted for free on GitHub Pages. Edit the content, add images, or link CSS/JS files to customize further.</p>
<ul>
<li>Hosted from a forked repository</li>
<li>Fully responsive design</li>
<li>Ready for your project</li>
</ul>
</main>
<footer>
<p>&copy; 2026 Your Name. Hosted on GitHub Pages.</p>
</footer>
</body>
</html>