Skip to content
Draft
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
107 changes: 107 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,107 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Eric W Schmidt</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
line-height: 1.6;
color: #333;
background-color: #f4f4f4;
}

.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
}

header {
background: #333;
color: #fff;
padding: 2rem 0;
text-align: center;
margin-bottom: 2rem;
}

header h1 {
font-size: 2.5rem;
margin-bottom: 0.5rem;
}

header p {
font-size: 1.2rem;
opacity: 0.9;
}

.content {
background: #fff;
padding: 2rem;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
margin-bottom: 2rem;
}

h2 {
color: #333;
margin-bottom: 1rem;
padding-bottom: 0.5rem;
border-bottom: 2px solid #333;
}

p {
margin-bottom: 1rem;
}

footer {
text-align: center;
padding: 2rem 0;
color: #666;
font-size: 0.9rem;
}

a {
color: #333;
text-decoration: none;
}

a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<header>
<div class="container">
<h1>Eric W Schmidt</h1>
<p>Welcome to my website</p>
</div>
</header>

<div class="container">
<section class="content">
<h2>About</h2>
<p>Welcome to my personal website. This is a simple, clean page to share information and connect with others.</p>
</section>

<section class="content">
<h2>Contact</h2>
<p>Feel free to reach out through GitHub: <a href="https://github.com/EricWSchmidt" target="_blank">@EricWSchmidt</a></p>
</section>
</div>

<footer>
<div class="container">
<p>&copy; 2026 Eric W Schmidt. All rights reserved.</p>
</div>
</footer>
</body>
</html>