-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
81 lines (75 loc) · 2.82 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Samarth Vohra - Portfolio</title>
<!-- Font Awesome for icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
<!-- Stylesheet -->
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Samarth Vohra</h1>
<p>Software Developer | DevSecOps Enthusiast</p>
<nav>
<a href="#education">Education</a>
<a href="#experience">Experience</a>
<a href="#projects">Projects</a>
<a href="#skills">Skills</a>
<a href="#contact">Contact</a>
</nav>
</header>
<section id="education">
<h2>Education</h2>
<p><strong>University of Central Florida</strong> - B.S. in Information Technology</p>
<p><em>Aug 2021 - May 2025</em></p>
</section>
<section id="experience">
<h2>Experience</h2>
<div>
<h3>Software Engineering & DevSecOps Intern</h3>
<p><em>Cole Engineering Services Inc. | Jun 2024 – Present</em></p>
<ul>
<li>Developed features using TypeScript, React, and Spring Boot.</li>
<li>Collaborated in Agile workflows using Jira and BitBucket.</li>
<li>Provisioned VMs with Terraform and automated configurations using Ansible.</li>
</ul>
</div>
</section>
<section id="projects">
<h2>Projects</h2>
<div>
<h3>SmartMealPlanner</h3>
<p>Responsive React app integrated with Firebase and OpenAI.</p>
<a href="https://smartmealplanner-f1cce.web.app/" target="_blank">View Project</a>
</div>
</section>
<section id="skills">
<h2>Technical Skills</h2>
<ul>
<li><strong>Languages:</strong> Java, Python, SQL, JavaScript, TypeScript</li>
<li><strong>Frameworks:</strong> React, Node.js, Spring</li>
<li><strong>Tools:</strong> Docker, Kubernetes, Git, Terraform</li>
</ul>
</section>
<section id="contact">
<h2>Contact</h2>
<div class="social-links">
<a href="mailto:[email protected]" target="_blank" aria-label="Email">
<i class="fa-solid fa-envelope"></i>
</a>
<a href="https://linkedin.com/in/samarthvohra26/" target="_blank" aria-label="LinkedIn">
<i class="fa-brands fa-linkedin"></i>
</a>
<a href="https://github.com/samork26" target="_blank" aria-label="GitHub">
<i class="fa-brands fa-github"></i>
</a>
</div>
</section>
<footer>
<p>© 2024 Samarth Vohra</p>
</footer>
</body>
</html>