-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathHome.html
More file actions
77 lines (67 loc) · 2.74 KB
/
Copy pathHome.html
File metadata and controls
77 lines (67 loc) · 2.74 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<title>Om - Developer Portfolio</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="CSS/Home.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css">
</head>
<body>
<header>
<nav>
<div class="left">Portfolio Website</div>
<div class="right">
<div class="hamburger" id="hamburger">
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
</div>
<ul id="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="services.html">Services</a></li>
</ul>
</div>
</nav>
</header>
<main>
<section class="about">
<h2>About Me</h2>
<p>Hi! I'm Om Prakash, 16 years old and currently pursuing 12th grade. I'm passionate about creating games and websites using HTML, CSS, and JavaScript.</p>
</section>
<section class="skills">
<h2>My Skills</h2>
<ul>
<li>🌐 Web Design (HTML, CSS, JS)</li>
<li>🎮 Game Development</li>
<li>🧠 Logic Building</li>
<li>🔥 Creative UI/UX Design</li>
</ul>
</section>
<section class="contact">
<h2>Contact Me</h2>
<p>Email: omprakashn682@gmail.com</p>
<p>Phone: +91 931-8306-439</p>
<a href="resume.html" class="btn">My Resume</a>
<a href="index.html" class="btn"><span>Back To Home</span> </a>
</section>
</main>
<footer>
<!-- Footer content here -->
</footer>
<script>
// Hamburger menu toggle
const hamburger = document.getElementById('hamburger');
const navLinks = document.getElementById('nav-links');
hamburger.addEventListener('click', () => {
navLinks.classList.toggle('active'); // Show/hide nav menu
hamburger.classList.toggle('active'); // Animate hamburger icon
});
</script>
</body>
</html>