-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (30 loc) · 754 Bytes
/
index.html
File metadata and controls
34 lines (30 loc) · 754 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Devendar | Projects</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Devendar</h1>
<p>Developer | Open Source Enthusiast</p>
</header>
<section class="projects">
<h2>My Projects</h2>
<div class="card">
<h3>Project One</h3>
<p>Short description of your project.</p>
<a href="https://github.com/yourname/project1" target="_blank">GitHub</a>
</div>
<div class="card">
<h3>Project Two</h3>
<p>Another cool project.</p>
<a href="https://github.com/yourname/project2" target="_blank">GitHub</a>
</div>
</section>
<footer>
<p>© 2026 Devendar</p>
</footer>
</body>
</html>