-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
256 lines (240 loc) · 9.96 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
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio Website</title>
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<style>
body {
font-family: Arial, sans-serif;
}
.navbar-brand img {
height: 40px;
}
#home {
position: relative;
color: white;
text-shadow: 2px 2px 4px #000000;
background-color: #282c34;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
#home .content {
position: relative;
z-index: 1;
}
#particles-js {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
z-index: 0;
}
.skills .col img {
width: 100px;
height: auto;
}
</style>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand" href="#">BK Portfolio</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item active">
<a class="nav-link" href="#home">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#skills">Skills</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact">Contact</a>
</li>
</ul>
</div>
</nav>
<div id="home" class="container text-center my-5">
<div id="particles-js"></div>
<div class="content">
<h1>Welcome to My Portfolio</h1>
<p>Welcome to my portfolio! I’m Bharath Kumar a dedicated front-end developer with a passion for creating visually stunning and user-centric websites. Here, you'll find a showcase of my work, demonstrating my skills in HTML, CSS, JavaScript, Feel free to reach out if you’d like to collaborate or learn more about my work! Also I'm currently learning into Full Stack Development!.</p>
</div>
</div>
<div id="about" class="container text-center my-5">
<h2>About Me</h2>
<p>I am a passionate web developer with a focus on creating elegant and functional user experiences
Hi there! I’m Bharath Kumar a front-end developer passionate about creating visually engaging and user-friendly web experiences. With expertise in HTML, CSS, and JavaScript, I bring designs to life with clean, responsive layouts that work seamlessly across devices.
I’m well-versed in modern front-end frameworks like React, Vue.js, and Angular, allowing me to build dynamic and interactive user interfaces that enhance the overall user experience. My focus is on delivering high-quality, efficient code and ensuring every project not only meets but exceeds design expectations.
Driven by a love for design and problem-solving, I stay updated with the latest trends and best practices in web development. Whether I’m optimizing performance or crafting intuitive navigation, my goal is always to create websites that are both functional and aesthetically pleasing.
Outside of development, I enjoy exploring new design trends and experimenting with emerging technologies. Feel free to explore my portfolio and reach out if you’d like to collaborate or discuss exciting front-end projects!.</p>
<img src="hero.png" class="img-fluid" alt="About Me Image">
</div>
<div id="skills" class="container text-center my-5">
<h2>Skills</h2>
<div class="row">
<div class="col">
<img src="https://img.icons8.com/?size=100&id=20909&format=png&color=000000" alt="HTML Icon">
<p>HTML</p>
</div>
<div class="col">
<img src="https://img.icons8.com/?size=100&id=21278&format=png&color=000000" alt="CSS Icon">
<p>CSS</p>
</div>
<div class="col">
<img src="https://img.icons8.com/?size=100&id=108784&format=png&color=000000" alt="JavaScript Icon">
<p>JavaScript</p>
</div>
<div class="col">
<img src="https://img.icons8.com/?size=100&id=84710&format=png&color=000000" alt="Bootstrap Icon">
<p>Bootstrap</p>
</div>
</div>
</div>
<div id="contact" class="container text-center my-5">
<h2>Contact Me</h2>
<form>
<div class="form-group">
<label for="name">Name</label>
<input type="text" class="form-control" id="name" placeholder="Your Name" required>
</div>
<div class="form-group">
<label for="email">Email address</label>
<input type="email" class="form-control" id="email" placeholder="Your Email" required>
</div>
<div class="form-group">
<label for="message">Message</label>
<textarea class="form-control" id="message" rows="3" required></textarea>
</div>
<button type="submit" class="btn btn-primary">Send Message</button>
</form>
</div>
<script src="https://kit.fontawesome.com/a076d05399.js"></script>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/particles.js"></script>
<script>
particlesJS("particles-js", {
"particles": {
"number": {
"value": 100,
"density": {
"enable": true,
"value_area": 800
}
},
"color": {
"value": "#ffffff"
},
"shape": {
"type": "circle",
"stroke": {
"width": 0,
"color": "#000000"
},
"polygon": {
"nb_sides": 5
},
"image": {
"src": "img/github.svg",
"width": 100,
"height": 100
}
},
"opacity": {
"value": 0.5,
"random": false,
"anim": {
"enable": false,
"speed": 1,
"opacity_min": 0.1,
"sync": false
}
},
"size": {
"value": 5,
"random": true,
"anim": {
"enable": false,
"speed": 40,
"size_min": 0.1,
"sync": false
}
},
"line_linked": {
"enable": true,
"distance": 150,
"color": "#ffffff",
"opacity": 0.4,
"width": 1
},
"move": {
"enable": true,
"speed": 6,
"direction": "none",
"random": false,
"straight": false,
"out_mode": "out",
"bounce": false,
"attract": {
"enable": false,
"rotateX": 600,
"rotateY": 1200
}
}
},
"interactivity": {
"detect_on": "canvas",
"events": {
"onhover": {
"enable": true,
"mode": "repulse"
},
"onclick": {
"enable": true,
"mode": "push"
},
"resize": true
},
"modes": {
"grab": {
"distance": 400,
"line_linked": {
"opacity": 1
}
},
"bubble": {
"distance": 400,
"size": 40,
"duration": 2,
"opacity": 8,
"speed": 3
},
"repulse": {
"distance": 200,
"duration": 0.4
},
"push": {
"particles_nb": 4
},
"remove": {
"particles_nb": 2
}
}
},
"retina_detect": true
});
</script>
</body>
</html>