-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
126 lines (100 loc) · 3.5 KB
/
index.html
File metadata and controls
126 lines (100 loc) · 3.5 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Durba Datta | Portfolio</title>
<!-- Google Font -->
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap" rel="stylesheet">
<!-- CSS -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- 🌌 Background -->
<div class="background"></div>
<!-- 🔝 Navbar -->
<nav class="navbar">
<div class="logo">DD</div>
<ul class="nav-links">
<li><a href="#about">About</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<!-- 🧊 Hero Section -->
<section class="hero glass">
<div class="hero-left">
<img src="assets/images/Durba1.png" alt="Durba Datta" class="profile">
</div>
<div class="hero-right">
<h1>Durba Datta</h1>
<h3>Frontend Developer</h3>
<p>
Hello! I'm Durba Datta, a frontend developer passionate about crafting clean and engaging web experiences.
I enjoy turning ideas into visually appealing and user-friendly interfaces using HTML, CSS, and JavaScript.
</p>
<div class="socials">
<a href="https://github.com/Durba05" target="_blank">
<img src="assets/icons/github.png" alt="GitHub">
</a>
<a href="https://linkedin.com/in/durba-datta-a009b0279" target="_blank">
<img src="assets/icons/linkedin.png" alt="LinkedIn">
</a>
</div>
<button class="btn">Contact Me</button>
</div>
</section>
<!-- 👤 About Section -->
<section id="about" class="about glass">
<div class="about-content">
<img src="assets/images/Durba2.png" alt="About Image">
<p>
I am a passionate frontend developer focused on building modern, responsive, and visually appealing web interfaces.
I enjoy experimenting with UI design trends and continuously improving my development skills.
</p>
</div>
</section>
<!-- 📊 Skills Section -->
<section id="skills" class="skills glass">
<h2>Skills</h2>
<div class="skill">
<p>HTML</p>
<div class="bar"><div style="width: 90%"></div></div>
</div>
<div class="skill">
<p>CSS</p>
<div class="bar"><div style="width: 85%"></div></div>
</div>
<div class="skill">
<p>JavaScript</p>
<div class="bar"><div style="width: 65%"></div></div>
</div>
</section>
<!-- 💼 Projects Section -->
<section id="projects" class="projects">
<h2>Projects</h2>
<div class="project-card glass">
<img src="assets/images/KurryChachuLogo.png" alt="Project Image">
<h3>Kurry Chachu – Food Delivery App</h3>
<p>A frontend-based food delivery website focused on clean UI and user experience.</p>
<a href="https://github.com/Durba05/Kurry-Chachu.git" target="_blank">
<button class="btn">View Project</button>
</a>
</div>
</section>
<!-- 📞 Contact Section -->
<section id="contact" class="contact glass">
<h2>Contact</h2>
<p>Feel free to reach out through my social platforms.</p>
<div class="socials">
<a href="https://github.com/Durba05" target="_blank">
<img src="assets/icons/github.png">
</a>
<a href="https://linkedin.com/in/durba-datta-a009b0279" target="_blank">
<img src="assets/icons/linkedin.png">
</a>
</div>
</section>
</body>
</html>