-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheducation.html
71 lines (69 loc) · 1.91 KB
/
education.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
<!Doctype HTML>
<html>
<head>
<title>
About Me!
</title>
<link rel="stylesheet" href="styling.css">
</head>
<body>
<div id="header">
<div id="heading">
<h1>About Me!</h1>
</div>
</div>
<div id="content">
<div class="contentPane" id="tl">
<p class="paragraphs">
My name is Divij Bindlish and I am from New Delhi.
I would describe myself as a Technology Freak and a Computer Lover.
I am an optimist and tend to be happy most of the times.
</p>
</div>
<div class="contentPane" id="tr">
<p class="paragraphs">
My Hobbies are:
<ul>
<li>PC Games</li>
<li>Reading Books</li>
<li>Watching Movies</li>
<li>Listening to Music</li>
</ul>
</p>
</div>
<div class="activeContentPane" id="bl">
<p class="paragraphs">
I completed my 10th and 12th standard education from Laxman Public School. I then secured an AIR 1459 in IIT-JEE and am currently doing B.Tech in Electrical Engineering from IIT Roorkee.
</p>
</div>
<div class="contentPane" id="br">
<p class="paragraphs">
My Contact Details are:<br/>
Phone Number: +91-9910050857<br/>
E-Mail ID: [email protected]<br/>
Address: S-96, Rajendra Bhawan, IIT Roorkee<br/>
</p>
</div>
<div id="central">
<a href="aboutMe.html"><div class="pane" id="a"></div></a>
<a href="hobbies.html"><div class="pane" id="b"></div></a>
<a href="education.html"><div class="activePane" id="c"></div></a>
<a href="contact.html"><div class="pane" id="d"></div></a>
</div>
</div>
<div id="leftPane">
<div class="link" >
<a href="aboutMe.html"><h2>Overview</h2></a>
</div>
<div class="link">
<a href="hobbies.html"><h2>Hobbies</h2></a>
</div>
<div class="link" id="active">
<a href="#"><h2>Education<h2></a>
</div>
<div class="link">
<a href="contact.html"><h2>Contact</h2></a>
</div>
</div>
</body>
</html>