-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcontact.html
More file actions
73 lines (66 loc) · 2.84 KB
/
contact.html
File metadata and controls
73 lines (66 loc) · 2.84 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Prafullkumar Tale</title>
<meta name="description" content="Prafullkumar's homepage" />
<meta name="author" content="Prafullkumar Tale" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="common.css" media="all">
<link rel="icon" href="images/favicon.ico" type="image/x-icon" sizes="20x20">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<link href='https://fonts.googleapis.com/css?family=ABeeZee' rel='stylesheet' type='text/css' />
<link href='https://fonts.googleapis.com/css?family=Enriqueta' rel='stylesheet' type='text/css' />
</head>
<body>
<div class="container">
<!-- Header section starts -->
<div class="header-section">
<div>
<div>
<h1><a href="index.html">Prafullkumar Tale</a></h1>
</div>
</div>
<nav class="navbar navbar-default">
<div class="container-fluid">
<ul class="nav navbar-nav">
<li><a href="index.html">Home</a></li>
<li><a href="research.html">Research</a></li>
<li><a href="experience.html">Experience</a></li>
<li><a href="teaching.html">Teaching</a></li>
<li class="active"><a href="contact.html">Contact</a></li>
<li><a href="misc.html">Misc</a></li>
</ul>
</div>
</nav>
</div>
<!-- Header section ends -->
<!-- Main content starts -->
<div class="row">
<div class="col-sm-6">
<h3>Office Address</h3>
<p>
Main Building, Office Nr. 405<br />
Indian Institute of Science Education and Research (IISER), Pune<br/>
Dr Homi Bhabha Rd, Pashan, Pune, <br/>
Maharashtra 411008, India
</p>
</div>
<div class="col-sm-6">
<h3>Email Address</h3>
<p> prafullkumar [at] iiserpune [dot] ac [dot] in</p>
<p> tale [dot] pratik [at] gmail [dot] com</p>
</div>
</div>
<!-- Main content ends -->
<!-- Footer section -->
<footer>
<div class="container-fluid">
<p class="copyright text-muted">Copyright © Prafullkumar Tale</p>
</div>
</footer>
</div>
</body>
</html>