-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (49 loc) · 1.73 KB
/
index.html
File metadata and controls
54 lines (49 loc) · 1.73 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Bijay Limbu - Portfolio</title>
<link rel="stylesheet" href="styles.css" />
<script defer src="script.js"></script>
</head>
<body>
<header>
<div class="container">
<img src="assets/profile-placeholder.jpg" alt="Profile photo" class="profile-photo" />
<h1 id="name"></h1>
<p id="tagline"></p>
<button id="theme-toggle">🌙 Dark Mode</button>
</div>
</header>
<nav>
<a href="#about">About</a>
<a href="#projects">Projects</a>
<a href="#contact">Contact</a>
</nav>
<section id="about" class="container">
<h2>About Me</h2>
<p id="bio"></p>
<h3>Skills</h3>
<div id="skills" class="skills"></div>
</section>
<section id="projects" class="container">
<h2>Projects</h2>
<div id="project-list" class="project-list"></div>
</section>
<section id="contact" class="container">
<h2>Contact Me</h2>
<p>Email: <a id="email" href=""></a></p>
<p>LinkedIn: <a id="linkedin" href="" target="_blank">View Profile</a></p>
<form action="https://formspree.io/f/manbvalp" method="POST">
<input type="text" name="name" placeholder="Your Name" required>
<input type="email" name="_replyto" placeholder="Your Email" required>
<textarea name="message" placeholder="Your Message" required></textarea>
<button type="submit">Send Message</button>
</form>
</section>
<footer>
<p>© <span id="year"></span> Bijay Limbu</p>
</footer>
</body>
</html>