-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEducation.jsx
30 lines (30 loc) · 1.45 KB
/
Education.jsx
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
import React from "react";
const Education = () => {
return (<>
<div id="edu" className="Education1">
<h1>Education</h1>
<div className="Education2">
<div className="Education" data-aos="fade-up" data-aos-anchor-placement="bottom center">
<></>
<img className="eduinvert" src="education.png" />
<span className="year">2020-2024</span>
<span>B.tech in Computer Engineering</span>
<span>Tatyasaheb Kore Institute of Engineering and Technology,Warnanagar</span>
</div>
<div className="Education" data-aos="fade-up" data-aos-anchor-placement="bottom center">
<img className="eduinvert" src="education.png" />
<span className="year">2018-2020</span>
<span>Std 11-12 (Science)</span>
<span>Yashwantrao Chavan College of Science Karad</span>
</div>
<div className="Education" data-aos="fade-up" data-aos-anchor-placement="bottom center">
<img className="eduinvert" src="education.png" />
<span className="year">2008-2018</span>
<span>Std 1-10</span>
<span>Shri.Chhatrapati Vidyamandir Tarale</span>
</div>
</div>
</div>
</>)
}
export default Education