-
Notifications
You must be signed in to change notification settings - Fork 3
/
about.html
118 lines (100 loc) · 5.32 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
113
114
115
116
117
118
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="apple-touch-icon" sizes="180x180" href="favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon/favicon-32x32.png" class="favicon">
<link rel="icon" type="image/png" sizes="16x16" href="favicon/favicon-16x16.png" class="favicon">
<link rel="manifest" href="favicon/site.webmanifest">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.7/css/all.css">
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<title>About</title>
<!-- <script src="js/script.js" defer></script> -->
<link rel="stylesheet" href="css/style.css">
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="js/script.js"></script>
</head>
<body>
<header>
<div class="logo">
<a href="./index.html"><img class="logo" src="./images/logo.png" href="./index.html" alt="logo"></a>
</div>
<nav id="hi">
<ul>
<li class="hide"><a id="hide" href="./index.html">Home</a></li>
<li class="hide"><a id="hide" href="./about.html" class="active">About</a></li>
<li class="hide"><a id="hide" href="https://anubhav-madhav-blogs.herokuapp.com/">Blog</a></li>
<li class="hide"><a id="hide" href="./projects.html">Projects</a></li>
<li class="hide"><a id="hide" href="./accomplishments.html">Accomplishments</a></li>
<li class="hide"><a id="hide" href="./gallery.html">Gallery</a></li>
<li class="hide"><a id="hide" href="./contact.html">Contact</a></li>
</ul>
</nav>
<div class="menu-toggle"><i class="fas fa-bars"></i></div>
</header>
<main>
<div class="about-page">
<div class="about">
<h1 class="about-heading">About me</h1>
<h1>I am a Computer Science Undergrad at Indian Institute of Information Technology, Vadodara.</h1>
<h1> I am a Django Developer and an AI + AR Enthusisast.</h1>
<br>
<h1> I am son of Mr. Umesh Kumar Madhav and Mrs. Neetu Madhav.
</h1>
</div>
<hr class="row">
<div class="experience">
<h1>Experience</h1>
<ul class="experience-details">
<li><a href="http://bothofus.se/">Web Developer Intern @BothOfUs</a></li>
<li><a href="https://studentambassadors.microsoft.com/en-US/profile/56065">Beta Microsoft Learn Student Ambassador</a></li>
<li><a href="https://www.youtube.com/c/CodeShell">Founder and Instructor at Code Shell</a></li>
<li><a href="https://theletstream.com/">Former Web Developer Intern @Letstream</a></li>
</ul>
</div>
<div class="education">
<h1>Education</h1>
<ul class="education-details">
<li> <a href="http://www.holylightschoolagra.com/">Holy Light Public School </a> - Nursery </li>
<li> <a href="http://stfelixagra.com/">St. Felix Nursery School </a> - L.K.G and U.K.G </li>
<li> <a href="http://www.stpetersagra.org/">St. Peter's College Agra </a> - 1st to 10th Standard (ICSE Board) </li>
<li> <a href="http://www.neweraschool.com/">New Era Senior Secondary School </a> - 11th and 12th Standard (CBSE Board) </li>
<li> <a href="http://www.iitashram.com/">IIT Ashram </a> - Coaching Classes for JEE Mains and JEE Advanced alongwith 11th and 12th Standard </li>
<li>
<a href="http://iiitvadodara.ac.in/">Indian Institute of Information Technology, Vadodara (IIIT Vadodara)</a> - Currently Pursuing 2nd Year in a B.Tech with CSE </li>
</ul>
</div>
<div class="skills ">
<h1>Skills</h1>
<ul class="skills-details ">
<li>Programming Languages: Python, Java, C++, C</li>
<li>Front-End Web Development: HTML, CSS and Javascript</li>
<li>Back-End Web Development: django, django-rest-framework</li>
<li>Augmented Reality Apps with Vuforia and Google AR Core</li>
</ul>
</div>
<div class="hobbies ">
<h1>Hobbies</h1>
<div class="hobbies-details ">
<ul>
<li>Singing</li>
<li>Playing Guitar</li>
<li>Swimming</li>
<li>Coding</li>
<li><a href="./gallery.html ">Photography</a></li>
<li>Marvel Cinematic Universe</li>
</ul>
</div>
</div>
</div>
</main>
<footer>
<center>
<h6> <span> <i class="fas fa-copyright "></i></span>
<a href="./contact.html ">Anubhav Madhav</a>
</h6>
</center>
</footer>
</body>
</html>