-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (47 loc) · 2.08 KB
/
Copy pathindex.html
File metadata and controls
54 lines (47 loc) · 2.08 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>Nishk Mistry</title>
<link rel="stylesheet" href="stylesheets/style.css">
<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=Inter:wght@400;500;700;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
</head>
<body>
<header>
<div class="container">
<nav>
<a href="index.html" class="logo">Nishk Mistry</a>
<div class="menu-toggle">☰</div>
<ul class="nav-links">
<li><a href="Main/About.html">About</a></li>
<li><a href="Main/Projects.html">Projects</a></li>
<li><a href="Main/Contacts.html">Contact</a></li>
</ul>
</nav>
</div>
</header>
<section class="hero">
<div class="hero-bg"></div>
<div class="hero-content fade-in">
<h1>Building <br><span style="color: var(--accent-color);">High-Quality Web</span> Experiences</h1>
<p>Web Developer | UI/UX Enthusiast | Creative Thinker | Freelancer</p>
</div>
</section>
<footer>
<div class="container">
<div class="social-links">
<a href="https://x.com/Nishk_" aria-label="X (Twitter)"><i class="fab fa-twitter"></i></a>
<a href="https://github.com/nishkmistry" aria-label="GitHub"><i class="fab fa-github"></i></a>
<a href="mailto:nishkmistry@gmail.com" aria-label="Gmail"><i class="fas fa-envelope"></i></a>
<a href="https://wa.me/9484649002" aria-label="WhatsApp"><i class="fab fa-whatsapp"></i></a>
</div>
<p>© 2026 Nishk Mistry | All rights reserved</p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>