-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
178 lines (131 loc) · 5.83 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
<!DOCTYPE html>
<head>
<title>Home Page</title>
<meta name="description" content="This is the home page of the website">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href ="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/css/all.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- header section starts -->
<header>
<div class="user">
<img src="images/pic.jpeg" alt="">
<h3 class="name">Bruhathi</h3>
<p class="post">Aspiring Semiconductor Engineer</p>
</div>
<nav class="navbar">
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="#education">Experience</a></li>
<!-- <li><a href="#portfolio">Portfolio</a></li> -->
</ul>
</nav>
</header>
<!-- header section ends -->
<div id="menu" class="fa fa-bars"></div>
<!-- home section starts -->
<section class="home" id="home">
<h3> HI THERE !</h3>
<h1> I'M <span> BRUHATHI</span></h1>
<p> An engineering student with a passion for semiconductor technology. Highly motivated and dedicated individual with a strong background in computer architecture, network-on-chip (NoC), and system-on-chip (SoC) design and analysis.</p>
<a href="#about"><button class="btn"> about me <i class="fas fa-user"></i></button></a>
</section>
<!-- home section ends -->
<!-- about section starts -->
<section class="about" id="about">
<h1 class="heading"><span>about</span> me</h1>
<div class="row">
<div class="counter">
<div class="box">
<span>4</span>
<h3>projects completed</h3>
</div>
</div>
</div>
<!-- Work Experience details -->
<div class="experience">
<h2>WORK EXPERIENCE</h2>
<h3>Advanced Computer and Communication Society IIIT Bangalore | Jul 2021 - Mar 2022</h3>
<h3>Intel Unnati Grand Challenge IIIT Hyderabad | Aug 2023 - Nov 2023</h3>
<h3>Intel Unnati Industrial Training IIIT Bangalore | May 2023 - July 2023</h3>
<h3>Innovative Computing, Intelligent Communication and Smart Electrical Systems (ICSES 2022) | July 2022</h3>
<h3>Performance Optimisation of Matrix Multiplication in CUDA</h3>
</div>
<!-- Education details -->
<div class="education">
<h2>EDUCATION</h2>
<h3>Rajalakshmi Institute of Technology, Chennai, TamilNadu | Bachelor of Engineering in Computer and Communication Engineering | CGPA: 8.9 | Graduation: Mar 2025</h3>
</div>
<!-- Certifications details -->
<div class="certifications">
<h2>CERTIFICATIONS</h2>
<p>• Advanced Networking Essentials by Cisco</p>
<p>• Advanced Excel Training by Microsoft</p>
</div>
</section>
<!-- about section ends -->
<head>
<body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="js/script.js"> </script>
</body>
</head>
<!-- education section starts -->
<section class="education" id="education">
<h1 class="heading">my <span>education</span></h1>
<div class="box-container">
<div class="box">
<i class="fas fa-project-diagram"></i>
<span>2023</span>
<h3>Network-on-Chip (NoC) Simulator</h3>
<p>Developed a simulator for network-on-chip architecture with detailed specifications including core configurations, cache hierarchies, and network topology. Integrated OMNeT++ modules to enhance simulation capabilities.</p>
</div>
<div class="box">
<i class="fas fa-project-diagram"></i>
<span>2022</span>
<h3>Face Recognition System</h3>
<p>Implemented a face recognition system using deep learning techniques. Developed and tested the model on various datasets to ensure high accuracy and robustness.</p>
</div>
<div class="box">
<i class="fas fa-project-diagram"></i>
<span>2021</span>
<h3>Smart Home Energy Management</h3>
<p>Created a smart home energy management system using IoT and machine learning algorithms. The system optimized energy usage based on real-time data and user preferences.</p>
</div>
</div>
</section>
<!-- education section ends -->
<!-- portfolio section starts -->
<!-- portfolio section ends -->
<!-- contact section starts -->
<section class="contact" id="contact">
<h1 class="heading"><span>contact</span> me</h1>
<div class="row">
<div class="content">
<h3 class="title">contact</h3>
<div class="info">
<h3><i class="fas fa-envelope"></i>[email protected]</h3>
<h3><i class="fas fa-phone"></i>9080541120</h3>
<h3><i class="fas fa-map-marker"></i>mogappair west, chennai -600037, india</h3
<h3><i class="fas fa-map-marker"></i>mogappair west, chennai -600037, india</h3>
</div>
</div>
<form action="" >
<input type="text" placeholder="name" class="box">
<input type="email" placeholder="email" class="box">
<input type="text" placeholder="project" class="box">
<textarea name="" id="" cols="30" rows="10" class="box message" placeholder="message"></textarea>
<button type="submit" class="btn">send <i class="fas fa-paper-plane"></i></button>
</form>
</div>
</section>
<!-- contact section ends -->
<!-- scroll top button -->
<a href="#home" class="top">
<img src="images/scroll-top-img.png" alt="">
</a>