-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathprogram.html
More file actions
142 lines (117 loc) · 4.45 KB
/
program.html
File metadata and controls
142 lines (117 loc) · 4.45 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
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
125
126
127
128
129
130
131
132
133
134
135
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="mob-header.css">
<link rel="stylesheet" href="header.css">
<link rel="stylesheet" href="mob-header.css">
<link rel="stylesheet" href="footer.css">
<link rel="stylesheet" href="mob-header.css">
<link rel="stylesheet" href="program.css">
<link rel="stylesheet" href="mob-header.css">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<link rel="stylesheet" href="mob-header.css">
<title>Program Schedule - I-LIPS 2025</title>
</head>
<body>
<!-- Header will be loaded here -->
<!-- Desktop Header -->
<!-- Mobile Header -->
<div id="mobile-header"></div>
<!-- Desktop Header -->
<div id="header"></div>
<section class="program">
<div class="container">
<div class="coming-soon-container">
<div class="coming-soon-content">
<div class="coming-soon-icon">
<i class="fas fa-users"></i>
</div>
<h1 class="coming-soon-title">Coming Soon</h1>
<div class="animated-line"></div>
<p class="coming-soon-text">Stay tuned for detailed timeline!</p>
<p class="coming-soon-subtext">Check back soon for the full schedule of sessions, activities, and more!</p>
<div class="loading-dots">
<span></span>
<span></span>
<span></span>
</div>
</div>
</div>
</div>
</section>
<!-- Old Code for program time schedule -->
<!--
<section class="program">
<div class="container"> -->
<!-- <div class="section-title">
<h2>Program Schedule</h2>
</div> -->
<!-- Program Section -->
<!-- <div class="program-content">
<table>
<tr>
<th>Time</th>
<th>Event</th>
</tr>
<tr>
<td>9:00 AM - 10:00 AM</td>
<td>Registration and Welcome Coffee</td>
</tr>
<tr>
<td>10:00 AM - 11:00 AM</td>
<td>Inaugural Session</td>
</tr>
<tr>
<td>11:00 AM - 12:30 PM</td>
<td>Keynote Speeches</td>
</tr>
<tr>
<td>12:30 PM - 1:30 PM</td>
<td>Lunch Break</td>
</tr>
<tr>
<td>1:30 PM - 3:00 PM</td>
<td>Technical Sessions - Track 1</td>
</tr>
<tr>
<td>3:00 PM - 3:30 PM</td>
<td>Tea Break</td>
</tr>
<tr>
<td>3:30 PM - 5:00 PM</td>
<td>Technical Sessions - Track 2</td>
</tr>
<tr>
<td>5:00 PM - 6:00 PM</td>
<td>Panel Discussion</td>
</tr>
<tr>
<td>6:00 PM - 7:00 PM</td>
<td>Cultural Program</td>
</tr>
<tr>
<td>7:00 PM - 8:00 PM</td>
<td>Dinner</td>
</tr>
</table>
</div>
</div> -->
<!-- </section> -->
<!-- Footer will be loaded here -->
<div id="footer"></div>
<!-- Scripts -->
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script>
$(document).ready(function() {
$("#header").load("header.html");
$("#footer").load("footer.html");
});
</script>
<script src="mob-header.js"></script>
<script src="index.js"></script>
</body>
</html>