-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
72 lines (63 loc) · 2.65 KB
/
Copy pathcontact.html
File metadata and controls
72 lines (63 loc) · 2.65 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Liu Research Lab @Brown</title>
<meta name="description" content="" />
<meta name="author" content="Tao Liu, PhD" />
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.2/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<link href="css/styles.css" rel="stylesheet" />
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.2/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://code.jquery.com/jquery-3.6.0.js" integrity="sha256-H+K7U5CnXl1h5ywQfKtSj8PCmoN9aaq30gDh27Xc0jk=" crossorigin="anonymous"></script>
<script>
$(function(){
$("#header").load("headerFooter.html");
});
</script>
</head>
<body style="height:1500px">
<div id="header"></div>
<div id="contact" class="container" style="margin-top:80px; margin-bottom:100px;">
<h1 class="display-3">Contact</h1>
<img src="images/brown2.png" class="img-thumbnail mt-3">
<div class="row mt-5">
<div class="col-sm-6 p-3">
<h4 class="bg-light">Office: </h4>
Department of Biostatistics
<br>Center for Statistical Sciences
<br>Room #705
<br><br>
<h4 class="bg-light">Address: </h4>
121 South Main St.
<br>PO Box G-S121-7
<br>Brown University
<br>Providence, RI 029012
<br>
<a class="btn btn-outline-info btn-sm" href="https://www.google.com/maps/place/121+S+Main+St,+Providence,+RI+02903/@41.8239618,-71.4092166,17z/data=!3m1!4b1!4m5!3m4!1s0x89e445160f613f19:0x115cacc88b52049b!8m2!3d41.8239618!4d-71.4070226">
<i class="fa fa-map pe-2" style="color:blue"></i>Map</a>
</div>
<div class="col-sm-6 p-3">
<h4 class="bg-light">Email: </h4>
tao_daniel_liu[at]]brown.edu, or
<br>
tliu[a]stat.brown.edu
<br>
<a class="btn btn-outline-info btn-sm mt-2" href="mailto:tao_daniel_liu@brown.edu">
<i class="fa fa-envelope pe-2 mb-0" style="color:blue"></i>Email me</a>
<br> <br>
<h4 class="bg-light">Phone: </h4>
401-863-6480 (office)
<br>401-863-9182 (fax)
<br> <br>
<h4 class="bg-light">Appointment: </h4>
Please use the following link to suggest a time.
<br>
<a class="btn btn-outline-info btn-sm mt-2" href="https://www.vyte.in/tliu">
<i class="fa fa-calendar pe-2" style="color:blue"></i> Schedule Meeting(s)</a>
</div>
</div>
</div>
</body>
</html>