-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
112 lines (109 loc) · 4.44 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
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
112
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio</title>
<link rel="stylesheet" href="style.css">
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
</head>
<body>
<header class="header">
<a href="#" class="logo">PortFolio</a>
<nav class="navbar">
<a href="#home_" class="active">Home</a>
<a href="#about_">About</a>
<a href="#skills_">Skills</a>
<a href="#projects_">Projects</a>
</nav>
<a href="#contact_" class="contact">Conctact Me</a>
</header>
<section class="home" : id ="home_">
<div class="home-content">
<h2>Hi</h2>
<h1>I'm Sasiya</h1>
<p>I am a student at RMK College, pursuing a Bachelor of Engineering in Computer Science.
Welcome to my Portfolio where you can find information about my skills and projects.</p>
<div class="btn-box">
<button class="btn-1"><a href="Resume.pdf"> <b>View Resume</b></a></button>
</div>
</div>
<div class="img-box">
<img src="image.png"alt="" >
</div>
</section>
<section class="about" : id="about_">
<div class="about-img">
<img src="img.jpg" alt="" width="170" height="170">
</div>
<div class="about-content">
<h2 class="heading">About</h2>
<p>I am Sasiya,student at RMK College, pursuing a Bachelor of Engineering in Computer Science.
I am passionate about Web Development, Machine Learning, and Software Engineering.I am passionate about overcoming challenges and devising innovative solutions that drive progress.
I am constantly seeking opportunities to learn and grow in these fields.Through my academic journey and personal projects, I have developed a solid foundation in programming languages such as C, C++, SQL and Java.
I am excited to share my work and connect with others who share my passion for technology and innovation.</p>
</div>
</section>
<section class="skills" : id="skills_" >
<div class="skill-content">
<h2 class="headings">Skills</h2>
<ol>
<li>C</li>
<li>C++</li>
<li>SQL</li>
<li>Java</li>
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
<li>Python</li>
</ol>
</div>
</section>
<section class="projects" : id="projects_">
<div class="proj">
<h2 class="headingp">Projects</h2>
<ol>
<li><b>Portfolio : </b>Built using HTML and CSS</li>
<li><b>Landing Page & Calculator : </b>Built using HTML and CSS</li>
<li><b>Bus Management : </b>CRUD Application</li>
</ol>
</div>
</section>
<section class="contact-form">
<h2 class="contact-me" : id="contact_">Contact Me</h2>
<form action="#">
<div class="input-box">
<input type="text" placeholder="Full Name">
<input type="email" placeholder="Email" >
<input type="number" placeholder="Phone Number">
<input type="text" placeholder="Subject" >
</div>
<textarea name="" id="" placeholder="Your Message"></textarea>
<input type="submit" value="Send Message" class="btn-1">
</form>
</section>
<footer class="footer">
<div class="social">
<a href="https://www.linkedin.com/in/sasiya-elangovan/"><i class='bx bxl-linkedin-square' ></i></a>
<a href="https://github.com/Sasiya-Elangovan"><i class='bx bxl-github'></i></a>
</div>
<ul class="list">
<li>
<a href="#">FAQ</a>
</li>
<li>
<a href="#">Services</a>
</li><li>
<a href="#">About</a>
</li>
<li>
<a href="#">Contact</a>
</li>
<li>
<a href="#">Privacy Policy</a>
</li>
</ul>
<p class="copyright">© 2024 Sasiya PortFolio | All Rights Reserved</p>
</footer>
</body>
</html>