-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
86 lines (73 loc) · 3.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Shanmugapriya T - Portfolio</title>
</head>
<body>
<header class="header">
<div class="container">
<h1>Shanmugapriya T</h1>
<p>Third-year student</p>
<p>Computer Science and Engineering</p>
</div>
</header>
<section id="about" class="section">
<div class="container">
<h2>About Me</h2>
<img src="myimg.jpg" height="200px" width="200px" alt="Shanmugapriya T">
<p>
I am a passionate and motivated student pursuing a degree in
Computer Science and Engineering. I am eager to apply my skills to
real-world projects and contribute to innovative solutions. I possess
excellent problem-solving abilities, strong communication skills, and
a proactive approach to learning. Seeking opportunities to apply my
technical acumen and make a positive impact through internships or
projects.
</p>
</div>
</section>
<section id="education" class="section">
<div class="container">
<h2>Education</h2>
<p>BE Computer Science</p>
<p>Madras Institute of Technology, Chrompet, Chennai</p>
<p>10/2021 - Present, 8.44 CGPA as of sem 4</p>
<p>HSC</p>
<p>I.V.L Matriculation Higher Secondary School</p>
<p>03/2020 - 05/2021, 96 percent</p>
<p>SSLC</p>
<p>I.V.L Matriculation Higher Secondary School</p>
<p>02/2018 - 03/2019, 97 percent</p>
</div>
</section>
<section id="projects" class="section">
<div class="container">
<h2>Personal Projects</h2>
<div class="project-card">
<h3>USB Authentication by Enumeration</h3>
<p>(03/2023 - 06/2023)</p>
<p>Preventing the system from malicious keystroke loggers. Preventing unauthorized devices from connecting to the system. Authenticating the unknown USB device connected to the system.</p>
</div>
<!-- Add more project cards here -->
</div>
</section>
<!-- Add more sections for Professional Development, Skills, Achievements, Organizations, Certificates, Languages, and Interests -->
<section id="contact" class="section">
<div class="container">
<h2>Contact</h2>
<p>Email: <a href="mailto:[email protected]">[email protected]</a></p>
<p>Phone: +916382960460</p>
<p>Location: Krishnagiri, India</p>
<p>GitHub: <a href="https://github.com/Shanmugapriya-20">github.com/Shanmugapriya-20</a></p>
</div>
</section>
<footer class="footer">
<div class="container">
<p>© 2023 Shanmugapriya T</p>
</div>
</footer>
</body>
</html>