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
61 changes: 61 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>My Personal GitHub Page</title>
<style>
body {
font-family: Arial, sans-serif;
padding: 2rem;
background-color: #f4f4f4;
}
h1, h2 {
color: #333;
}
ul {
list-style: none;
padding-left: 0;
}
li {
background: #fff;
margin-bottom: 0.5rem;
padding: 1rem;
border-radius: 6px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
p {
margin: 0.5rem;
}
a {
text-decoration: none;
color: #007acc;
font-weight: bold;
}
</style>
</head>
<body>
<h1>👤 Welcome to My GitHub Page</h1>
<p>This page is part of my GitHub practice project.</p>
<p>My name is Ji Yong Lee and user number is 32193541.</p>

<h2>📄 My Pages</h2>
<ul>
<li><a href="about.html">About Me</a></li>
<li><a href="skills.html">My Skills</a></li>
<li><a href="projects.html">My Projects</a></li>
<li><a href="contact.html">Contact Me</a></li>
</ul>

<h2>📝 What I Practiced</h2>
<ul>
<li>✅ Cloned this repository to local machine</li>
<li>✅ Created and switched between branches</li>
<li>✅ Made commits for different sections</li>
<li>✅ Merged branches using pull requests</li>
<li>✅ Resolved merge conflicts (if any)</li>
<li>✅ Pushed changes to GitHub</li>
<li>✅ Used GitHub Pages to publish this site</li>
</ul>
</body>
</html>