-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (47 loc) · 1.92 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>@jitendravjh</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;400;700&display=swap">
</head>
<body>
<header>
<h1><a href="https://jitendravjh.github.io">@jitendravjh</a></h1>
<button id="theme-toggle" class="theme-btn">🌙 Dark Mode</button>
</header>
<main>
<section id="intro">
<h2>Welcome to My Portfolio Webpage</h2>
<img src="/me.jpeg" alt="Jitendra" id="profile-pic">
<p>Hi! I'm Jitendra Verma.</p>
</section>
<section id="social">
<h3 class="highlight">Connect with Me</h3>
<ul>
<li><a href="https://twitter.com/jitendravjh" target="_blank"><i class="fab fa-twitter"></i></a></li>
<li><a href="https://linkedin.com/in/jitendravjh" target="_blank"><i class="fab fa-linkedin"></i></a></li>
<li><a href="https://github.com/jitendravjh" target="_blank"><i class="fab fa-github"></i></a></li>
<li><a href="https://instagram.com/jitendravjh" target="_blank"><i class="fab fa-instagram"></i></a></li>
</ul>
</section>
<section id="contact">
<h3 class="highlight">Contact Me</h3>
<p>You can also reach me at <a href="mailto:[email protected]">[email protected]</a>.</p>
</section>
<section id="resume">
<h3 class="highlight">My Resume</h3>
<p>To view my resume, <a href="/resume">click here</a>.</p>
</section>
</main>
<footer>
<p>Made with <i class="fas fa-heart"></i> by
<a href="https://linkedin.com/in/jitendravjh" target="_blank" id="footer-link">@jitendravjh</a>
</p>
</footer>
<script src="/script.js"></script>
</body>
</html>