-
Notifications
You must be signed in to change notification settings - Fork 1
/
publications.html
45 lines (38 loc) · 1.22 KB
/
publications.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Sanjeev's Website</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.6/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.2.1/js/bootstrap.min.js"></script>
<style>
.jumbotron{
background-image: url("imgs/snow_mountain.jpg");
background-size: cover;
background-repeat: no-repeat;
}
</style>
<!-- <script src="jquery.js"></script> -->
<script>
$(function(){
$("#includeContent").load("common.html");
});
</script>
</head>
<body>
<div id="includeContent"></div>
<div class="container" style="margin-top:30px">
<div class="row">
<div class="col-sm-8">
<h2>PUBLICATIONS</h2>
<h5>
<a class="nav-link" href="../publications/ICASSP_2020_submission.pdf">Automatic identification of speakers using head gestures in a narration</a>
</h5>
</div>
</div>
</div>
</body>
</html>