-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimportant_dates.php
124 lines (111 loc) · 4.77 KB
/
important_dates.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<html>
<head> <?php include('head_content.php') ?>
<style>
.customTable{
border:0.10em solid grey;
}
</style>
</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">
<!-- Left panel starts here-->
<div id="leftpanel" style="width: 15%; margin-top: 30px;">
<?php include_once("leftpanel.php");?>
</div>
<div id="main_container" style="float:right; width: 83%;">
<!-- <div id="mid_container" style="float:left" align="left">
<?php include_once("bda_sub_header.php");?> -->
<br><br>
<h3 class="page-title" align=""><b>Important Dates</b></h3>
<br><br>
<h4 style="text-decoration:underline;">Papers : </h4>
<table cellpadding="0" cellspacing="0" width="600px" class="table customTable">
<tr>
<td width="50%" style="vertical-align:top;" >Abstract submission:</td>
<td width="50%" >2<sup>nd</sup> July 2018, 23:59 PST<br>
<!-- <span style="text-decoration:line-through; color:red;"><span style="color:#000000;">Extended to 10<sup>th</sup> July 2018, 23:59 GMT</span></span></td> -->
</tr>
<tr>
<td width="50%" style="vertical-align:top;" >Full paper submissions:</td>
<td width="50%" >9<sup>th</sup> July 2018, 23:59 PST<br>
<!-- <span style="text-decoration:line-through; color:red;"><span style="color:#000000;">Extended to 10<sup>th</sup> July 2018, 23:59 GMT</span></span></td>-->
</tr>
<tr>
<td width="50%" >Research paper notifications:</td>
<td width="50%" >14<sup>th</sup> September 2018, 23:59 PST</td>
</tr>
<tr>
<td width="50%" >Camera ready copy submission:</td>
<td width="50%" > 1<sup>st</sup> October 2018, 23:59 PST</td>
</tr>
</table>
<h4 style="text-decoration:underline;">Tutorial Proposals</h4>
<table cellpadding="0" cellspacing="0" width="600px" class="table customTable" >
<tr>
<td width="50%" >Submission of proposals:</td>
<td width="50%" > 4<sup>th</sup> August 2018, 23:59 PST<br>
</tr>
<tr>
<td width="50%" >Notification</td>
<td width="50%" >26<sup>th</sup> August 2018, 23:59 PST<br> </td>
</tr>
</table>
<h4 style="text-decoration:underline;">Workshop Proposals</h4>
<table cellpadding="0" cellspacing="0" width="600px" class="table customTable">
<tr>
<td width="50%" >Submission of proposals:</td>
<td width="50%" >4<sup>th</sup> June 2018, 23:59 PST</td>
</tr>
<tr>
<td width="50%" >Acceptance notifications</td>
<td width="50%" >12<sup>th</sup> June 2018, 23:59 PST</td>
</tr>
</table>
<!-- <h3 style="text-decoration:underline;">Student Symposium</h3>
<table cellpadding="0" cellspacing="0" width="600px" class="table" border="1">
<tr>
<td width="50%" >Submission of extended abstract:</td>
<td width="50%" ><span style="text-decoration:line-through; color:red;"><span style="color:#000000;">on or before 15<sup>th</sup> June, 23:59 GMT</span></span></td>
</tr>
<tr>
<td width="50%" >Acceptance Notifications</td>
<td width="50%" ><span style="text-decoration:line-through; color:red;"><span style="color:#000000;">on 21<sup>st</sup> June, 2018, 23:59 GMT</span></span></td>
</tr>
<tr>
<td width="50%" >Submission of Full paper</td>
<td width="50%" ><span style="text-decoration:line-through; color:red;"><span style="color:#000000;">on or before 07<sup>th</sup> July, 2018 23:59 GMT</span></span><br>
<span style="text-decoration:line-through; color:red;"><span style="color:#000000;">Extended to 10<sup>th</sup> July 2018, 23:59 GMT</span></span></td>
</tr>
<tr>
<td width="50%" >Camera Ready Copy Submission</td>
<td width="50%" >on or before 01<sup>th</sup> Oct 2018, 23:59 GMT</td>
</tr>
</table> -->
<h4 style="text-decoration:underline;">Conference : </h4>
<table cellpadding="0" cellspacing="0" width="600px" class="table customTable">
<tr>
<td width="50%" >Pre-conference tutorials will be held on</td>
<td width="50%" >18<sup>th</sup> December 2018 </td>
</tr>
<tr>
<td width="50%" >Main Conference starts</td>
<td width="50%" >19<sup>th</sup> December 2018</td>
</tr>
<tr>
<td width="50%" >Conference ends</td>
<td width="50%" >21<sup>st</sup> December 2018</td>
</tr>
<tr>
<td width="50%" valign="top">Venue for Conference </td>
<td width="50%" >Department of Computer Science and Engineering,<br>National Institute of Technology Warangal,<br>Telangana State, <br> India, PIN: 506004. </td>
</tr>
</table>
</div>
</div>
</main>
<?php include('footer.php') ?>
</body>
</html>