-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabout.html
112 lines (88 loc) · 3.86 KB
/
about.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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>portfolio</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="responsive.css">
<script src="https://kit.fontawesome.com/b06a377e67.js" crossorigin="anonymous"></script>
<link rel="shortcut icon" href="/image/favicon_io/apple-touch-icon.png" type="image/x-icon">
</head>
<body>
<!---------------------------- navbar ---------------------------->
<div id="navbar">
<i class="fa-solid fa-bars" onclick="menutoggle()"></i>
<ul id="uls">
<li><a href="/index.html"><i class="fa-solid fa-house"></i>Home</a></li>
<li><a href="/contact.html"><i class="fa-solid fa-phone"></i>Contact</a></li>
<li><a href="/skills.html"><i class="fa-solid fa-rocket"></i>Skills</a></li>
<li><a href="/web.html"><i class="fa-solid fa-dice-d20"></i>Projects</a></li>
<li><a href="/about.html"><i class="fa-solid fa-address-card"></i>About</a></li>
<li><a href="/resume.html" ><i class="fa-solid fa-file-arrow-down"></i>RESUME</a></li>
</ul>
</div>
<!---------------------------- navbar ---------------------------->
<hr>
<!---------------------------- about starts ---------------------------->
<div id="about-section">
<div class="aboutchild1">
<h3>My Education</h3>
<div class="aboutchild2">
<div>
<h2>2022 - 2023</h2>
</div>
<hr>
<section>
<h5>FULL STACK WEB DEVELOPMENT</h5>
<p>MASAI SCHOOL</p>
<h6>Cousre(Full Time)</h6>
<span>I'm Currently Studying In MASAI SCHOOL and i'ts an full time course of Sofware Development</span>
</section>
</div>
<div class="aboutchild2">
<div>
<h2>2017 - 2020</h2>
</div>
<hr>
<section>
<h5>B.COM</h5>
<p>Bachelor of Commerce </p>
<h6>Jiwaji University, Gwalior</h6>
<span>I Have Done My Graduation From The Above Mentioned University </span>
</section>
</div>
</div>
<div class="aboutchild1">
<h3>My Experience</h3>
<div class="aboutchild2">
<div>
<h2>2018 - 2019</h2>
</div>
<hr>
<section>
<h5>Business Development Executive</h5>
<p>At captital gain research</p>
<h6>Shivpuri</h6>
<span>I Was Working There When I Was In Collage For 6 Month</span>
</section>
</div>
<div class="aboutchild2">
<div>
<h2>2019 - 2020</h2>
</div>
<hr>
<section>
<h5>SCHOOL TEACHER</h5>
<p>At SDM pblic school</p>
<h6>Shivpuri</h6>
<span>I worked there for 8 Months As a Enlish Teacher I Used To Teach Student From Class 5TH-10TH</span>
</section>
</div>
</div>
</div>
<!---------------------------- about ends ---------------------------->
</body>
</html>
<script src="index.js"></script>