-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIndex.html
More file actions
58 lines (45 loc) · 1.94 KB
/
Index.html
File metadata and controls
58 lines (45 loc) · 1.94 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Jenish Angom - Portfolio</title>
</head>
<body>
<header>
<h1>Jenish Angom</h1>
<p>Programmer</p>
<nav>
<ul>
<li><a href="#about">About</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<section id="about">
<h2>About Me</h2>
<p>I use to play games, learn programing, watching movies, Research something that I know in a free time.</p>
<p>I do have learn the basic things of computer Science. I'm a biginner who learn coding and web developer
and I also belive that I would become a professional programmer. Until I become
a professional programmer I would not give up.</p>
</section>
<section id="projects">
<h2>My Projects</h2>
<article>
<h3>Project Title 1</h3>
<p>A brief description of the project. Explain the goal, your role, and the technologies used (e.g., HTML, CSS, JavaScript).</p>
<p><a href="link-to-project.html" target="_blank">View Project</a> | <a href="link-to-github-repo" target="_blank">GitHub Repository</a></p>
</article>
</section>
<section id="contact">
<h2>Get in Touch</h2>
<p>I'm always open to new opportunities and collaborations. Feel free to reach out!</p>
<ul>
<li>Email: <a href="mailto:your.email@example.com">your.email@example.com</a></li>
<li>LinkedIn: <a href="https://linkedin.com/in/yourprofile" target="_blank">linkedin.com/in/yourprofile</a></li>
<li>GitHub: <a href="https://github.com/yourprofile" target="_blank">github.com/yourprofile</a></li>
</ul>
</section>
</body>
</html>