-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
84 lines (77 loc) · 2.47 KB
/
Copy pathindex.html
File metadata and controls
84 lines (77 loc) · 2.47 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Sagar Adhikari - Portfolio</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<nav id="navbar">
<ul>
<li><a href="#about" class="nav-link active">About</a></li>
<li><a href="#projects" class="nav-link">Projects</a></li>
<li><a href="#hackathons" class="nav-link">Hackathons</a></li>
<li><a href="#contact" class="nav-link">Contact</a></li>
</ul>
</nav>
</header>
<section id="about">
<div class="content">
<img src="IMG_9111.png" alt="Sagar Adhikari" class="profile-pic" />
<h1>Hello, I'm Sagar Adhikari.</h1>
<p id="intro" class="typing">
An aspiring computer engineer exploring machine learning .
</p>
<p>Aside programming, i am a football and trekking enthusiast.</p>
</div>
</section>
<section id="projects">
<div class="content">
<h2>Projects</h2>
<div class="project">
<h3>Smart Form Filler</h3>
<p>
A browser extension that automatically fills forms on government
websites by extracting data from a citizenship image.
</p>
</div>
<div class="project">
<h3>Thesis Submission Platform</h3>
<p>
A Node.js and Express-based system for managing thesis proposals
among students, supervisors, and admins.
</p>
</div>
<!-- Add more projects here -->
</div>
</section>
<section id="hackathons">
<div class="content">
<h2>Hackathons</h2>
<div class="project">
<h3>Hack for Nepal 2024 – Kathmandu</h3>
<p>
48‑hour civic‑tech hackathon; built a crop‑disease detection demo
with TensorFlow Lite .
</p>
</div>
<div class="project">
<h3>Tech Innovators Hackathon 2025 – Pokhara</h3>
<p>Collaborated on an inclusive education platform</p>
</div>
</div>
</section>
<section id="contact">
<div class="content">
<h2>Contact</h2>
<p>Find me on GitHub:</p>
<a href="https://github.com/sagarad31" target="_blank"
>https://github.com/sagarad31</a
>
</div>
</section>
<script src="script.js"></script>
</body>
</html>