forked from vaibhavsingh97/ichsa2018
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathImportantDates.php
101 lines (99 loc) · 4.6 KB
/
ImportantDates.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
<?php
$title = "Important Dates | ICHSA 2018";
$id_name = 'id="important-date"';
include 'include/php/head.php';
?>
<main id="important-dates">
<div class="container">
<h1 style="text-align:center;font-weight:300;">Important Dates</h1>
<div class="timeline">
<div class="timeline-event">
<div class="card timeline-content z-depth-2">
<div class="card-content">
<span class="card-title activator grey-text text-darken-4">Submission of Abstract</span>
<div class="chip red" style="color:#fff;">
<strike>30<sup>th</sup> November, 2017</strike>
<i class="material-icons"></i>
</div>
<div class="chip red" style="color:#fff;">
<strike>15<sup>th</sup> December, 2017</strike>
<i class="material-icons"></i>
</div>
<div class="chip teal" style="color:#fff;">
30<sup>th</sup> December, 2017
<i class="material-icons"></i>
</div>
</div>
</div>
<div class="timeline-badge red white-text"><i class="material-icons" style="font-weight:300; font-size:40px;">radio_button_unchecked</i></div>
</div>
<div class="timeline-event">
<div class="card timeline-content z-depth-2">
<div class="card-content">
<span class="card-title activator grey-text text-darken-4">Submission of Full length Paper</span>
<div class="chip red" style="color:#fff;">
<strike>15<sup>th</sup> September, 2017</strike>
<i class="material-icons"></i>
</div>
<div class="chip red" style="color:#fff;">
<strike>30<sup>th</sup> November, 2017</strike>
<i class="material-icons"></i>
</div>
<div class="chip red" style="color:#fff;">
<strike>15<sup>th</sup> December, 2017</strike>
<i class="material-icons"></i>
</div>
<div class="chip teal" style="color:#fff;">
30<sup>th</sup> December, 2017
<i class="material-icons"></i>
</div>
</div>
</div>
<div class="timeline-badge red white-text"><i class="material-icons" style="font-weight:300; font-size:40px;">radio_button_unchecked</i></div>
</div>
<div class="timeline-event">
<div class="card timeline-content z-depth-2">
<div class="card-content">
<span class="card-title activator grey-text text-darken-4">Decision of Acceptance/ Rejection</span>
<div class="chip red" style="color:#fff;">
<strike>15<sup>th</sup> December, 2017</strike>
<i class="material-icons"></i>
</div>
<div class="chip teal" style="color:#fff;">
30<sup>th</sup> December, 2017
<i class="material-icons"></i>
</div>
</div>
</div>
<div class="timeline-badge red white-text"><i class="material-icons" style="font-weight:300; font-size:40px;">radio_button_unchecked</i></div>
</div>
<div class="timeline-event">
<div class="card timeline-content z-depth-2">
<div class="card-content">
<span class="card-title activator grey-text text-darken-4">Submission of Camera Ready Papers</span>
<div class="chip teal" style="color:#fff;">
31<sup>st</sup> December, 2017
<i class="material-icons"></i>
</div>
</div>
</div>
<div class="timeline-badge red white-text"><i class="material-icons" style="font-weight:300; font-size:40px;">radio_button_unchecked</i></div>
</div>
<div class="timeline-event">
<div class="card timeline-content z-depth-2">
<div class="card-content">
<span class="card-title activator grey-text text-darken-4">Early bird Registration</span>
<div class="chip teal" style="color:#fff;">
31<sup>st</sup> December, 2017
<i class="material-icons"></i>
</div>
</div>
</div>
<div class="timeline-badge red white-text"><i class="material-icons" style="font-weight:300; font-size:40px;">radio_button_checked</i></div>
</div>
</div>
</div>
</main>
<?php
include 'include/php/foot.php';
?>