-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAbout.html
More file actions
111 lines (100 loc) · 4.84 KB
/
About.html
File metadata and controls
111 lines (100 loc) · 4.84 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Me</title>
<link rel="stylesheet" href="./Styles/abtme.css">
<link rel="icon" type="image/x-icon" href="./Assets/Imagens/Home/symbol.png">
<script type="module" src="https://unpkg.com/ionicons@7.1.0/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/ionicons@7.1.0/dist/ionicons/ionicons.js"></script>
</head>
<body>
<header id="sticky-header">
<nav>
<ul>
<li><a href="#about">About Me</a></li>
<li><a href="#background">Background</a></li>
<li><a href="#purpose">Purpose</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#connect">Connect</a></li>
</ul>
</nav>
</header>
<div class="about" id="about">
<div class="wrapper">
<h2>About Me</h2>
<div class="about-content">
<img src="./Assets/Imagens/smimg.jpeg" alt="Profile Image" class="about-image">
<div class="about-text">
<audio controls autoplay src="./Assets/Audios/Spider-Man Complete Theme (Arachnoverture by Michael Giacchino)(MP3_320K).mp3"></audio>
<p>Hello, I’m Soundar Balaji J</p>
<p>I’m a Computer Science Engineer with a passion for crafting code that propels technological advancement. I’m dedicated to building creative solutions through software development.</p>
<p>With a strong foundation in Full Stack Web Development, I have honed my skills across both front-end (technologies like HTML, CSS, JavaScript, TypeScript, and ReactJS) and back-end (technologies like NodeJS, ExpressJS, GIT, and Python) and database applications (technologies like Firebase, MongoDB, and SQL). Currently, I’m expanding my expertise into Android development and Cyber-security, further broadening my ability to deliver impactful and user-centric applications.</p>
</div>
</div>
</div>
</div>
<div id="skills">
<h3>Skills</h3>
<div class="skills-container">
<div class="skill-bar">
<span>HTML & CSS</span>
<div class="progress-bar" style="width: 90%;"></div>
</div>
<div class="skill-bar">
<span>JavaScript</span>
<div class="progress-bar" style="width: 85%;"></div>
</div>
<div class="skill-bar">
<span>ReactJS</span>
<div class="progress-bar" style="width: 80%;"></div>
</div>
<div class="skill-bar">
<span>NodeJS</span>
<div class="progress-bar" style="width: 75%;"></div>
</div>
</div>
</div>
<div class="projects" id="projects">
<h3>My Projects</h3>
<div class="project-card" onclick="openModal()">
<img src="./Assets/Imagens/Project1.jpg" alt="Project Image">
<p>Project 1: Spider-Man Themed Website</p>
</div>
<!-- Modal -->
<div id="projectModal" class="modal">
<div class="modal-content">
<span class="close" onclick="closeModal()">×</span>
<h2>Spider-Man Themed Website</h2>
<p>This project showcases a website dedicated to Spider-Man with interactive features.</p>
</div>
</div>
</div>
<div id="purpose">
<h3>Purpose of this Website</h3>
<p>Spider-Man has been my favorite superhero since childhood...</p>
<p>So, this is just a small tribute to my favorite superhero, Spider-Man...</p>
</div>
<div id="connect">
<h3>Let’s Connect</h3>
<div class="socialicon">
<a href="https://www.instagram.com/soundar__msd/"><ion-icon name="logo-instagram" class="social"></ion-icon></a>
<a href="https://www.linkedin.com/in/soundar-balaji-j-133b691b9/"><ion-icon name="logo-linkedin"></ion-icon></a>
<a href="https://github.com/soundar3078"><ion-icon name="logo-github"></ion-icon></a>
</div>
<form id="contactform">
<label for="name">Name:</label>
<input type="text" id="name" name="name" placeholder="Your Name" required><br><br>
<label for="message">Message:</label>
<textarea id="message" name="message" placeholder="Your Message" rows="5" required></textarea><br><br>
<button type="submit" class="submit">Submit</button>
</form>
</div>
<footer>
<p>Thank you for visiting my website. Stay tuned for more updates!</p>
</footer>
<script src="script.js"></script>
</body>
</html>