-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (72 loc) · 2.86 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Siva Prabhu V - Portfolio</title>
<link rel="stylesheet" href="styles.css">
<script src="scripts.js" defer></script>
</head>
<body>
<header>
<div class="container">
<img src="assets/photo.jpg" alt="Siva Prabhu V" class="profile-pic">
<h1>Siva Prabhu V</h1>
<p>Embedded Software Engineer</p>
<nav>
<ul>
<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>
</div>
</header>
<main>
<section id="about" class="about">
<div class="container">
<h2>About Me</h2>
<p>I am an Embedded Software Engineer with a strong foundation in embedded systems design, programming, and troubleshooting. I have a Bachelor's degree in Electronics and Instrumentation Engineering from St. Joseph’s College of Engineering and have completed an Advanced Embedded Systems Course at Vector India Pvt Ltd, Chennai.</p>
</div>
</section>
<section id="skills" class="skills">
<div class="container">
<h2>Skills</h2>
<ul>
<li>C, C++, Embedded C</li>
<li>ARM7-based Microcontrollers (LPC2129)</li>
<li>ESP8266, CAN, I2C, UART, SPI, RS232</li>
<li>Linux, RTOS, TCP/IP</li>
<li>Keil, Flash Magic, ISP, Proteus, CAPL</li>
</ul>
</div>
</section>
<section id="projects" class="projects">
<div class="container">
<h2>Projects</h2>
<ul>
<li>CAN-Based Body Control Module</li>
<li>Multilevel Security System</li>
</ul>
</div>
</section>
<section id="contact" class="contact">
<div class="container">
<h2>Contact Me</h2>
<form id="contact-form">
<input type="text" id="name" name="name" placeholder="Your Name" required>
<input type="email" id="email" name="email" placeholder="Your Email" required>
<textarea id="message" name="message" rows="4" placeholder="Your Message" required></textarea>
<button type="submit">Send Message</button>
</form>
</div>
</section>
</main>
<footer>
<div class="container">
<p>© 2024 Siva Prabhu V. All Rights Reserved.</p>
</div>
</footer>
</body>
</html>