-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
223 lines (206 loc) · 9.25 KB
/
index.html
File metadata and controls
223 lines (206 loc) · 9.25 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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta content="text/html" http-equiv="content-type">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css?family=Itim" rel="stylesheet">
<link rel="stylesheet" href="static/css/bootstrap.min.css" />
<link rel="stylesheet" href="static/css/style.css" />
<script src="static/js/jquery.js"></script>
<script src="static/js/jquery-ui.min.js"></script>
<script src="static/js/bootstrap.min.js"></script>
<script src="static/js/animate.min.js"></script>
<script src="static/js/jquery.ui.touch-punch.min.js"></script>
<script src="static/js/main.js"></script>
<script>
$(function () {
var animate = new Animate({
offset: [0, 0],
remove: false,
});
var animateReverse = new Animate({
target: '[data-animate-reverse]',
offset: [0, 0],
reverse: true,
remove: false,
});
animate.init();
animateReverse.init();
window.onload = function () {
animate.render();
animateReverse.render();
};
$("#robot").draggable();
$(".icon").draggable();
$(".icon").on('click', function (e) {
$(e.target).effect("shake", { times: 10 }, "slow");
});
$("#robot").on('click', function (e) {
$(e.target.firstElementChild).effect("shake", { times: 10 }, "slow");
$("#robot").removeClass("robot");
$("#robot").off("click");
})
$('.navbar-collapse a').click(function () {
$(".navbar-collapse").collapse('hide');
});
$('.banner-title').ready(function () {
var elements = document.getElementsByClassName('txt-rotate');
for (var i = 0; i < elements.length; i++) {
var toRotate = elements[i].getAttribute('data-rotate');
var period = elements[i].getAttribute('data-period');
if (toRotate) {
new TxtRotate(elements[i], JSON.parse(toRotate), period);
}
}
});
});
</script>
<title>ML Workshop Demo Website</title>
</head>
<body>
<header>
<nav class="navbar-inverse navbar-fixed-top navbar">
<div class="navbar-header">
<button class="navbar-toggle" data-toggle="collapse" data-target="#navbar-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a href="#home" class="navbar-brand nav-header-item">
<strong>MachineLearning Demo</strong>
</a>
</div>
<div class="navbar-collapse navbar-right collapse" id="navbar-collapse">
<ul class="nav navbar-nav nav-item-text">
<li>
<a href="#home">Home</a>
</li>
<li>
<a href="#register">Register</a>
</li>
<li>
<a href="#contact">Contact Us</a>
</li>
<li>
<a href="https://github.com/jaiselrahman/WorkshopWebsite" target="_blank">Github</a>
</li>
</ul>
</div>
</nav>
</header>
<main style="min-height: 100vh;" class="col-sm-offset-1 col-sm-10 ">
<div id="home" class="content-div">
<div class="banner row" data-animate-reverse data-animation-classes="animated popup">
<img src="images/banner.jpg" class="banner-img" />
<div class="banner-title">
<h1>Learn
<span class="txt-rotate" data-period="1000" data-rotate='[ "to teach machines to learn,", "Machine Learning"]'></span>
</h1>
<a href="#contact" style="color: white">
<h4>at College of Engineering</h4>
<h5>on MMMM DD<sup>th</sup>, YYYY</h5>
</a>
</div>
</div>
<div class="well row" data-animate data-animation-classes="animated swipe-left">
<h4>Chief Guest:</h4>
<p class="text-center" style="font-size: 12pt">
<strong>Name</strong>, Designation
</p>
</div>
<div class="well row" data-animate data-animation-classes="animated swipe-right">
<h4>About the Workshop:</h4>
<p class="text-justify">
This event is for students who want to learn and apply ML for real world
applications.
<img class="icon" src="images/ic_presentation.png" style="float: right;" />
<br />
<br />
In the first half of the day, you will learn python and about machine learning and it's
applications.
<div id="robot" data-animate data-animation-classes="robot">
<img class="icon" style="float: left; margin-right: 3rem;" src="images/ic_robot.png" />
</div>
<br />
In the second half of the day, you will dive deep on how to build, train, and deploy models using
frameworks such as Numpy, Pandas, SciPY, Scikit Learn, Matplotlib. .
</p>
</div>
<div class="well row" data-animate data-animation-classes="animated swipe-left">
<h4>Prerequisites:</h4>
<img style="float: left; margin-right: 3rem;" class="icon" src="images/ic_laptop.png" />
<br />
<p>
<li>
<strong>Laptop</strong> is required for hands-on session.
</li>
</p>
</div>
<div class="well row" data-animate data-animation-classes="animated swipe-right">
<h4>Perks:</h4>
<div style="display:flex;">
<div class="text-center" style="float: left; flex: 1;">
<img class="icon" src="images/ic_certificate.png" />
<br />
Certificate
</div>
<div class="text-center" style="float: right; flex:1">
<img draggable="true" class="icon" src="images/ic_food.png" />
<br />
Food & Snacks
</div>
</div>
<br/>
<ul>
<li>Certificate will be provided that day itself.</li>
<li>Veg or Non-Veg can be choosed in registration form.</li>
</ul>
</div>
<div class="well row" data-animate data-animation-classes="animated swipe-left">
<h4>Schedule:</h4>
<table class="table table-striped">
<tr>
<td>09:00am - 12:00pm</td>
<td>Lecture Session</td>
</tr>
<tr>
<td>12:30pm - 01:30pm</td>
<td>Lunch</td>
</tr>
<tr>
<td>01:30pm - 04:30pm</td>
<td>Hands-On session</td>
</tr>
</table>
</div>
</div>
<div id="register" class="well row content-div">
<iframe src="https://docs.google.com/forms/d/e/1FAIpQLSeHq3WF59sM4HylKjRUzybkeDk-VHGSLIw5sF07H4vbB8wXgQ/viewform?embedded=true"
class="register-form">
Loading...
</iframe>
</div>
<div id="contact" class="content-div">
<div class="well row">
<div class="col-md-6">
<h4 style="margin-bottom:1%;">Contact us</h4>
<img src="images/ic_whatsapp.png" height="32px" /> Person 1:<a href="tel:9999999999">
99999 99999</a>, Person 2:<a href="tel:9999999999"> 99999 99999</a><br />
<img src="images/ic_email.png" style="margin-top:1%;" /> <a href="mailto:mlworkshopdemo@gmail.com">mlworkshopdemo@gmail.com</a>
<br />
<h4 style="margin-bottom:1%;">Spread the word</h4>
<div class="addthis_inline_share_toolbox"></div>
</div>
<div class="col-md-6">
<h4 style="margin-bottom:1%;">Location</h4>
<iframe src="https://www.google.com/maps/embed"
class="location-map" allowfullscreen>
</iframe>
</div>
</div>
</div>
</main>
<script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-5c15ed9fdab6b592"></script>
</body>
</html>