forked from DKU-EmbeddedSystem-Lab/2025_DKU_OpenSourceBasic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (59 loc) · 1.51 KB
/
index.html
File metadata and controls
61 lines (59 loc) · 1.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
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 Kwanghee Lee and user number is 72240257.</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>