-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaboutme.html
More file actions
73 lines (64 loc) · 3.23 KB
/
aboutme.html
File metadata and controls
73 lines (64 loc) · 3.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Me - Arun Roshan</title>
<link rel="stylesheet" href="aboutme.css">
</head>
<body>
<header>
<div class="container">
<h1>Welcome to Arun Roshan's Portfolio</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="aboutme.html">About Me</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="achive.html">Achievement</a></li>
<li><a href="resume.html">Resume</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="blog.html">Articles</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</div>
</header>
<section id="about-me">
<div class="container">
<div class="profile-container">
<img src="PhotoGrid_Plus_1683472410831.jpg" alt="Profile Image" class="profile-image">
</div>
<div class="bio">
<h3>Detailed Bio</h3>
<p>
I am Arun Roshan, a passionate and dedicated professional currently pursuing a Master of Computer Application. My journey in technology began at Vellore Institute of Technology (VIT), where I completed my Bachelor of Computer Application. During my academic tenure, I developed a strong foundation in software development and honed my skills in frontend development, UI/UX design, and IoT development.
</p>
</div>
<div class="skills">
<h3>Skills</h3>
<ul>
<li>Application Development: Proficient in developing robust and scalable applications using Android Studio.</li>
<li>Frontend Development: Skilled in creating responsive and user-friendly interfaces with HTML5, CSS3, JavaScript, and frameworks like React.js.</li>
<li>UI/UX Design: Experienced in designing intuitive user interfaces that enhance user satisfaction and engagement.</li>
<li>IoT Development: Knowledgeable in IoT principles and protocols, with hands-on experience in Arduino, Raspberry PI and sensors handling.</li>
</ul>
</div>
<!-- <div class="achievements">
<h3>Achievements</h3>
<ul>
<li>Academic Excellence: Maintained a consistent academic record at VIT, earning recognition for [specific achievements or honors].</li>
<li>Project Contributions: Led successful projects such as [mention project names or brief descriptions].</li>
<li>Award Recipient: Received [mention any awards or accolades] for outstanding performance in [mention relevant field].</li>
</ul>
</div> -->
</div>
</section>
<footer>
<div class="container">
<p>© 2024 Arun Roshan. All rights reserved.</p>
</div>
</footer>
<script src="aboutme.js"></script>
</body>
</html>