-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
145 lines (109 loc) · 4.13 KB
/
Copy pathindex.html
File metadata and controls
145 lines (109 loc) · 4.13 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>WelcometoSH</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">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
</head>
<body>
<!-- ===== HEADER / HERO ===== -->
<section class="hero">
<div id="particles-js"></div>
<div class="hero-inner">
<!-- LEFT -->
<div class="hero-left">
<div class="profile-ring">
<img src="assets/images/pic.jpeg" alt="Shaik Sohel">
</div>
</div>
<!-- CENTER -->
<div class="hero-center">
<h1>Shaik Sohel</h1>
<h2>Java Full Stack Developer</h2>
<p>I build scalable backend systems and clean web interfaces.</p>
<div class="hero-buttons">
<a href="#projects" class="btn primary">View Projects</a>
<a href="#contact" class="btn outline">Contact Me</a>
</div>
</div>
<!-- RIGHT -->
<div class="hero-right">
<img src="assets/images/laptop.png" class="laptop" alt="3D Laptop">
</div>
</div>
</section>
<!-- ===== ABOUT ===== -->
<section class="about reveal" id="about">
<h2>About Me</h2>
<p>
I am a Java Full Stack Developer with strong fundamentals in Java, Spring Boot,
and frontend technologies like HTML, CSS, and JavaScript.
I enjoy building complete web applications and solving real-world problems.
</p>
</section>
<!-- ===== SKILLS ===== -->
<section class="skills reveal" id="skills">
<h2>Skills</h2>
<div class="skill-grid">
<div class="skill-card">
<h3>Backend</h3>
<p>Java, Spring Boot, REST APIs, JDBC, Hibernate</p>
</div>
<div class="skill-card">
<h3>Frontend</h3>
<p>HTML, CSS, JavaScript, Bootstrap</p>
</div>
<div class="skill-card">
<h3>Database</h3>
<p>MySQL</p>
</div>
<div class="skill-card">
<h3>Tools</h3>
<p>Git, GitHub, Maven, Postman</p>
</div>
</div>
</section>
<!-- ===== PROJECTS ===== -->
<section class="projects reveal" id="projects">
<h2>Projects</h2>
<div class="project-card">
<h3>Employee Management System</h3>
<p>
A CRUD-based web application to manage employee records using
Spring Boot and MySQL.
</p>
<p class="tech">Java | Spring Boot | MySQL</p>
<a href="https://github.com/S-H-Code" target="_blank" rel="noopener noreferrer"class="btn primary github-btn">
<i class="fa-brands fa-github"></i> GitHub</a>
</div>
<div class="project-card">
<h3>Online Clothing Store</h3>
<p>
E-commerce application with product listings, cart, and user authentication.
</p>
<p class="tech">Java | Spring Boot | HTML | CSS</p>
<a href="https://github.com/S-H-Code" target="_blank" rel="noopener noreferrer"class="btn primary github-btn">
<i class="fa-brands fa-github"></i> GitHub</a>
</div>
</section>
<!-- ===== CONTACT ===== -->
<section class="contact reveal" id="contact">
<h2>Contact Me</h2>
<p>Email: <strong>shaiksohel022@gmail.com</strong></p>
<p>GitHub: <strong>https://github.com/S-H-Code</strong></p>
<p>LinkedIn: <strong>https://www.linkedin.com/in/shaiksohel88/</strong></p>
</section>
<!-- ===== FOOTER ===== -->
<footer>
<p>© 2026 Shaik Sohel. All rights reserved.</p>
</footer>
<script src="https://cdn.jsdelivr.net/npm/particles.js@2.0.0/particles.min.js"></script>
<script src="particles.js"></script>
<script src="script.js"></script>
</body>
</html>