-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSimplePortfolio.html
More file actions
79 lines (69 loc) · 2.38 KB
/
Copy pathSimplePortfolio.html
File metadata and controls
79 lines (69 loc) · 2.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Prashant Maurya | Portfolio</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="Portfolio.css">
</head>
<body>
<header class="hero">
<div class="hero-content">
<img src="Photo.jpg" alt="Prashant Maurya">
<h1>Prashant Maurya</h1>
<h3>Java Full Stack Developer</h3>
<p>Passionate about building scalable web applications using Java, Spring Boot and modern technologies.</p>
<div class="btn-group">
<a href="https://www.linkedin.com/in/prashantpiyush1111/" class="btn primary">LinkedIn</a>
<a href="https://github.com/prashantpiyush1111" target="_blank" class="btn secondary">View GitHub</a>
</div>
</div>
</header>
<section class="section">
<h2>About Me</h2>
<p>
I am a Computer Science Engineering student currently learning Java, Spring Boot and Web Development.
My goal is to become a highly skilled Full Stack Developer and build impactful real-world applications.
</p>
</section>
<section class="section skills">
<h2>Technical Skills</h2>
<div class="skill-box">
<span>Java</span>
<span>HTML</span>
<span>CSS</span>
<span>MySQL</span>
<span>Git</span>
<span>GitHub</span>
<span>Spring Boot</span>
</div>
</section>
<section class="section">
<h2>Projects</h2>
<div class="project-card">
<h3>E-Learning Platform</h3>
<p>Built using Java and MySQL with full CRUD operations and backend integration.</p>
</div>
<div class="project-card">
<h3>Simple Portfolio Website</h3>
<p>Responsive personal portfolio created using HTML and CSS.</p>
</div>
</section>
<section class="section">
<h2>Education</h2>
<div class="education-card">
<h3>Bachelor of Technology (CSE)</h3>
<p>IEC College of Engineering & Technology (2023-2027)</p>
<p><strong>CGPA:</strong> 7.45</p>
</div>
</section>
<footer>
<h3>Connect With Me</h3>
<div class="social-links">
<a href="mailto:prashantpiyush1111@gmail.com">Email</a>
<a href="https://github.com/prashantpiyush1111" target="_blank">GitHub</a>
<a href="https://www.linkedin.com/in/prashantpiyush1111/" target="_blank">LinkedIn</a>
</div>
</footer>
</body>
</html>