-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
126 lines (126 loc) · 3.93 KB
/
index.html
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My GitHub Profile</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
.container {
width: 80%;
margin: auto;
overflow: hidden;
}
header {
background: #333;
color: #fff;
padding-top: 30px;
min-height: 70px;
border-bottom: #0779e4 3px solid;
}
header a {
color: #fff;
text-decoration: none;
text-transform: uppercase;
font-size: 16px;
}
header ul {
padding: 0;
list-style: none;
display: flex;
justify-content: space-between;
}
header li {
display: inline;
padding: 0 20px;
}
.main {
padding: 30px;
background: #fff;
margin-bottom: 30px;
}
.main h1, .main h2 {
color: #333;
}
.main p {
line-height: 1.6;
}
footer {
background: #333;
color: #fff;
text-align: center;
padding: 10px 0;
}
.btn {
display: inline-block;
color: #fff;
background: #0779e4;
padding: 10px 20px;
text-decoration: none;
border-radius: 5px;
}
.btn:hover {
background: #005bb5;
}
</style>
</head>
<body>
<header>
<div class="container">
<h1><a href="#">My GitHub Profile</a></h1>
<ul>
<li><a href="#about">About</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
</header>
<div class="main container">
<section id="about">
<h1>About Me</h1>
<p>Hello! I am a passionate C# developer with extensive experience in building high-quality applications. I have a strong background in software development, and I enjoy working on innovative projects that challenge my skills and knowledge.</p>
</section>
<section id="skills">
<h2>Skills</h2>
<ul>
<li>C# and .NET Framework</li>
<li>ASP.NET and ASP.NET Core</li>
<li>Entity Framework</li>
<li>RESTful API development</li>
<li>SQL Server and Database Design</li>
<li>Unit Testing and Test-Driven Development (TDD)</li>
<li>Version Control with Git</li>
</ul>
</section>
<section id="projects">
<h2>Projects</h2>
<p>Here are some of my notable projects:</p>
<ul>
<li>
<strong>Project Name 1</strong>: Description of project, technologies used, and key achievements.
</li>
<li>
<strong>Project Name 2</strong>: Description of project, technologies used, and key achievements.
</li>
<li>
<strong>Project Name 3</strong>: Description of project, technologies used, and key achievements.
</li>
</ul>
</section>
<section id="contact">
<h2>Contact</h2>
<p>Feel free to reach out to me on <a href="https://github.com/yourusername" target="_blank">GitHub</a> or connect with me on LinkedIn.</p>
<a href="mailto:[email protected]" class="btn">Email Me</a>
</section>
</div>
<footer>
<p>© 2024 Your Name</p>
</footer>
</body>
</html>