-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (65 loc) · 3.22 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Darsh Kulthia - Frontend Web Developer</title>
<link rel="stylesheet" href="styles.css">
<script src="https://kit.fontawesome.com/a2a4cfc191.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" rel="stylesheet">
<script src="click-spark.js"></script>
</head>
<body>
<click-spark></click-spark>
<nav class="bg-gray-900 text-white p-4">
<div class="container mx-auto flex justify-between items-center">
<a href="#" class="text-2xl font-semibold">Darsh Kulthia</a>
<ul class="flex space-x-4">
<li><a href="#about">About</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
</nav>
<header class="bg-blue-500 h-screen flex items-center justify-center text-white">
<div class="text-center">
<h1 class="text-4xl font-semibold">Hello, I'm Darsh Kulthia</h1>
<p class="text-lg">Passionate Web Developer | Python Enthusiast | Creator of Applications & Browser Extensions🚀</p>
<a href="#contact" class="bg-yellow-500 hover:bg-yellow-400 text-gray-900 hover:text-white py-2 px-4 mt-4 inline-block rounded-lg transition duration-300 ease-in-out">Contact Me</a>
</div>
</header>
<section id="about" class="py-16 bg-gray-900 text-white">
<div class="container mx-auto">
<h2 class="text-3xl font-semibold text-white">About Me</h2>
<br>
<div class="profile-box">
<img src="pic-hd.jpeg" alt="Profile Picture">
</div>
<p>
Hey there! I'm Darsh Kulthia, a passionate frontend web developer with a knack for turning ideas into interactive and visually stunning web experiences. I thrive on the challenge of creating seamless, user-friendly interfaces that bridge design and functionality.
</p>
<h3 class="text-xl font-semibold mt-8">Skills and Technologies</h3>
<br>
<i class="fa-brands fa-html5 fa-2xl"></i>
<i class="fa-brands fa-css3-alt fa-2xl"></i>
<i class="fa-brands fa-square-js fa-2xl"></i>
<i class="fa-brands fa-sass fa-2xl"></i>
<i class="fa-brands fa-java fa-2xl"></i>
<i class="fa-brands fa-python fa-2xl"></i>
<i class="fa-brands fa-flask fa-2xl"></i>
</div>
</section>
<section id="projects" class="bg-blue-500 py-16">
<div class="container mx-auto">
<h2 class="text-3xl font-semibold text-gray-900">My Projects</h2>
</div>
</section>
<section id="contact" class="bg-gray-900 text-white py-16">
<div class="container mx-auto">
<h2 class="text-3xl font-semibold">Contact Me</h2>
</div>
</section>
<script src = "script.js"></script>
</body>
</html>