-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
82 lines (66 loc) · 3.55 KB
/
about.html
File metadata and controls
82 lines (66 loc) · 3.55 KB
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="css/base.css">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" integrity="sha384-WskhaSGFgHYWDcbwN70/dfYBj47jz9qbsMId/iRN3ewGhXQFZCSftd1LZCfmhktB" crossorigin="anonymous">
<script src="http://code.jquery.com/jquery-2.1.4.min.js"></script>
<script>
$(function(){
$('a').each(function(){
if ($(this).prop('href') == window.location.href) {
$(this).addClass('active'); $(this).parents('li').addClass('active');
}
});
});
</script>
<title>About</title>
</head>
<body>
<!-- navbar -->
<nav class="navbar navbar-expand-md bg-dark navbar-dark navbar-fixed-top">
<!-- Brand -->
<a class="navbar-brand" href="index.html">ME</a>
<!-- Toggler/collapsibe Button -->
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#collapsibleNavbar">
<span class="navbar-toggler-icon"></span>
</button>
<!-- Navbar links -->
<div class="collapse navbar-collapse" id="collapsibleNavbar">
<ul class="nav navbar-nav navbar-right">
<li class="nav-item">
<a id="Home" class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a id="About" class="nav-link" href="about.html">About</a>
</li>
<li class="nav-item">
<a id="Places" class="nav-link" href="places.html">Places</a>
</li>
<li class="nav-item">
<a id="Contact" class="nav-link" href="contact.html">Contact</a>
</li>
</ul>
</div>
</nav>
<div class="about-text">
<br><br>
<h1>About me</h1><br><br><br>
<p>My name is Mitanshu Mittal. I am 19 years old, currently pursuing B.tech in Mathematics and Computing from <a href="http://www.iitg.ac.in" style="color:#323f75")>Indian Institute of Technology,Guwahati</a>.</p>
<br> <ul>
<li><b>Present</b>: Doing Internship as Full stack developer at SWC-Webopp Team, IITG</li>
<br> <li><b>Hometown</b>: Sheoganj,Rajasthan(India)</li><br>
<li><b>Interests</b>: Maths, Coding, Finance</li><br>
<li><b>Hobbies</b>: Traveling, Reading</li><br>
<li><b>Team</b>: I was a part of <a href="http://technothlon.techniche.org/" style="color:#323f75" >Technothlon-2018</a> in which I conducted <a href="https://medium.com/@technothlon/mains17-memoirs-a-little-bid-d556c3b71087" style="color:#323f75">A Little Bid</a> event.</li>
<br> <li><b>Fun Fact</b>: I am a bathroom singer</li><br>
</ul>
</div>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js" integrity="sha384-smHYKdLADwkXOn1EmN1qk/HfnUcbVRZyYmZ4qpPea6sjB/pTJ0euyQp0Mk8ck+5T" crossorigin="anonymous"></script>
</body>
</html>