-
Notifications
You must be signed in to change notification settings - Fork 0
/
theme.html
146 lines (135 loc) · 4.67 KB
/
theme.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
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
136
137
138
139
140
141
142
143
144
145
146
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Theme - IWMA 2022</title>
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap"
rel="stylesheet"
/>
<!-- Fontawesome icons -->
<link
rel="stylesheet"
href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css"
integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p"
crossorigin="anonymous"
/>
<!-- Bootstrap CSS-->
<link rel="stylesheet" href="./css/bootstrap.min.css" />
<!-- Stylesheets -->
<link rel="stylesheet" href="./css/style.css" />
<!-- Animate CSS -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
/>
</head>
<body class="d-flex flex-column vh-100">
<nav class="navbar fixed-top navbar-expand-lg navbar-light container py-4">
<div class="container">
<a class="navbar-brand brand-white" id="nav-brand" href="./index.html"
>IWMA <span class="bold">2022</span></a
>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarNav"
aria-controls="navbarNav"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse ms-auto" id="navbarNav">
<ul class="navbar-nav ms-auto">
<li class="nav-item mx-2">
<a class="nav-link" href="./index.html">Home</a>
</li>
<li class="nav-item mx-2">
<a class="nav-link" href="./about.html">About</a>
</li>
<li class="nav-item mx-2">
<a class="nav-link active" href="./theme.html">Theme</a>
</li>
<li class="nav-item mx-2">
<a class="nav-link" href="./speaker.html">Speakers</a>
</li>
<li class="nav-item mx-2">
<a class="nav-link" href="./schedule.html">Schedule</a>
</li>
<li class="nav-item mx-2">
<a class="nav-link" href="./organizer.html">Organizers</a>
</li>
<li class="nav-item mx-2">
<a class="nav-link" href="./archives.html">Archives</a>
</li>
<li class="nav-item mx-2">
<a class="nav-link" href="./contact.html">Contact Us</a>
</li>
<li class="nav-item mx-2">
<a class="nav-link btn btn-danger px-3" href="./register.html"
>Register Now</a
>
</li>
</ul>
</div>
</div>
</nav>
<div class="bg-title-image"></div>
<div class="title-div py-5 container">
<h1 class="page-title pb-4 animate__animated animate__fadeIn">Theme</h1>
<p class="animate__animated animate__fadeIn">
<a href="./index.html">Home</a> <span
><i class="fas fa-caret-right"></i></span
> <a href="./theme.html">Theme</a>
</p>
</div>
<section class="container info-section py-5">
<p class="animate__animated animate__fadeIn">
The theme for IWMA 2022 is “Emerging Trends in Multimedia” with the
following three tracks:
</p>
<ul class="animate__animated animate__fadeIn">
<li>Multimedia Security</li>
<li>Machine Learning for Multimedia</li>
<li>Multimedia Applications</li>
</ul>
<p class="animate__animated animate__fadeIn">
Workshop tracks will address real-world challenges to ensure the
security of multimedia data and the application of multimedia in various
domains. Each track will have experts from both academia and industry to
know the current research challenges in the multimedia research domain.
The workshop will also have hands-on sessions from academic experts as
well as industry experts from MATLAB and Nvidia. The workshop is
specifically designed to provide the current insights of multimedia
research to young faculty, researchers, industry professionals, and
students working in the computer vision, image processing, and machine
learning area.
</p>
</section>
<footer
class="footer py-3 d-flex align-items-center justify-content-center"
>
Developer:
<span
>
<a href="https://www.linkedin.com/in/ketan-jakhar-841282191/"
>Ketan Jakhar</a
>
<!-- &
<a href="https://www.linkedin.com/in/ashutosh-kumar-84365a193/"
>Ashutosh Kumar</a
> -->
</span>
</footer>
<!-- Javascript -->
<script src="./js/main.js"></script>
<script src="./js/bootstrap.bundle.min.js"></script>
</body>
</html>