-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinvited_speakers.php
53 lines (47 loc) · 1.56 KB
/
invited_speakers.php
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
<html>
<head> <?php include('head_content.php') ?> </head>
<body>
<?php include('nav_header.php'); ?>
<?php include('banner.php'); ?>
<main role="main" style='margin-top:40px; font-family:Lora, serif'>
<div class="myContainer contentBox">
<h3><b>Invited Speakers</b></h3>
<div id="mid_container" >
<table cellpadding="0" cellspacing="0" width="600px" class="table" border="1">
<tr>
<th>S No.</th>
<th>Author</th>
<th>Title of the Paper</th>
</tr>
<tr>
<td>1</td>
<td><a href="http://www.tkl.iis.u-tokyo.ac.jp/~toyoda/index_e.html" target="_blank">Dr. Masashi Toyoda</a></td>
<td>Mobility Big Data Analysis and Visualization</td>
</tr>
<tr>
<td>2</td>
<td><a href="http://faculty.iiit.ac.in/~pkreddy/" target="_blank">Prof P Krishna Reddy</a></td>
<td>A Framework to Harvest Page Views of Web for Banner Advertising</td>
</tr>
<tr>
<td>3</td>
<td><a href="http://www.cpsc.ucalgary.ca/~barker" target="_blank">Prof. Ken Barker</a></td>
<td>Privacy Protection or Data Value: Can we have both?</td>
</tr>
<tr>
<td>4</td>
<td><a href="http://www.iith.ac.in/~msingh/" target="_blank">Dr Manish Singh</a></td>
<td>Information Exploration in E-Commerce Databases</td>
</tr>
<tr>
<td>5</td>
<td><a href="" target="_blank">Durga Toshnival</a></td>
<td>Multistage Classification for Cardiovascular Disease Risk Prediction</td>
</tr>
</table>
</div>
</div>
</main>
<?php include('footer.php'); ?>
</body>
</html>