-
Notifications
You must be signed in to change notification settings - Fork 6
/
introtoweb.html
155 lines (137 loc) · 6.71 KB
/
introtoweb.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
147
148
149
150
151
152
153
154
155
<!DOCTYPE html>
<html lang="en" class="deeplearning">
<head>
<title>Introduction to web development workshop | Abhiyanthriki</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="assets/img/icons/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
<meta http-equiv ="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="expires" content="0">
<link rel="icon" type="image/png" href="assets/images/icons/gyanith-icon.png" sizes="32x32">
<link href="https://fonts.googleapis.com/css?family=Quicksand" rel="stylesheet">
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css">
<script src="assets/js/particles.min.js"></script>
<link rel="manifest" href="assets/images/icons/manifest.json">
<link rel="stylesheet" href="assets/css/login.css">
<link rel="stylesheet" href="assets/css/gy19.css">
<link rel="stylesheet" href="assets/css/stars.css">
</head>
<body class="page-bg">
<div id='stars'></div>
<div id='stars2'></div>
<div id='stars3'></div>
<div class="page-top">
<a href="workshops.html"><i class="fas fa-arrow-left"></i></a>
<h1>BMW Tech Talk</h1>
</div>
<div class="container">
<div class="display ap">
<div class="top-section">
<p class="header-1">Description</p>
<p class="header-3">Register</p>
<p class="header-4">Contact Us</p>
</div>
<div class="content-section">
<p class="intro">
</p>
<div class="e-description">
<strong> <p>Date: 15 March 2019</p>
<p>Time: 9.30 AM - 3:30 PM</p></strong>
<p>
An <strong>IEEE-certified</strong> workshop by <strong>BMW</strong> which introduces and extensively explains their safety features and technology which is what continuously places them at the top.
The following are the topics to be discussed on:
<br>
· Brief History
<br>
· First model and its features
<br>
· Advancements
<br>
· Brand promotions
<br>
· Technological advancements in BMW vehicles
<br>
· Current models explained
<br>
· Future concepts
<br>
· Safety technologies adapted in BMW vehicles
<br>
· An interactive session with the audience
<br>
· Apparel technology
</p>
</div>
<div class="e-register">
<div class="row">
<div class="col-lg-6 left-acc">
<p><STRONG> Registration fee: </STRONG></p>
<p><strong> IEEE members : ₹ 200 </strong></p>
<form action="https://www.yepdesk.com/bmw-tech-talk" method="get" enctype="multipart/form-data" autocomplete="false" class="trans" target="_blank">
<input type="submit" value="Register!" name="pay-now-btn">
</form>
</div>
<div class="col-lg-6 right-acc">
</div>
</div>
</div>
<div class="e-contact">
<p>In case of any Queries or for Registration, feel free to contact us : <br></p>
<li>Prejith Premkumar</li>
<div class = 'contact-info' style = "text-decoration:none; color:inherit;">
<ul style = "list-style-type:none;">
<li>Phone : <a href = "tel:9447947518" style = "color:black;">+91-9447947518</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</body>
<script src="https://code.jquery.com/jquery-2.2.4.min.js"></script>
<script src="assets/js/prefixfree.min.js"></script>
<script src="assets/js/popper.min.js"></script>
<script src="assets/js/bootstrap.min.js"></script>
<script>
$(document).ready(function(){
// $('.e-description').hide();
// $('.e-rules').hide();
$('.e-register').hide();
$('.e-contact').hide();
$('.header-1').click(function(){
$('.e-description').fadeIn();
$('.intro').css("display", "none");
$('.e-rules').css("display", "none");
$('.e-register').css("display", "none");
$('.e-contact').css("display", "none");
});
// $('.header-2').click(function(){
// $('.e-description').css("display", "none");
// $('.intro').css("display", "none");
// $('.e-rules').fadeIn();
// $('.e-register').css("display", "none");
// $('.e-contact').css("display", "none");
// });
$('.header-3').click(function(){
$('.e-description').css("display", "none");
$('.e-rules').css("display", "none");
$('.e-register').fadeIn();
$('.e-contact').css("display", "none");
$('.intro').css("display", "none");
});
$('.header-4').click(function(){
$('.e-description').css("display", "none");
$('.e-rules').css("display", "none");
$('.e-register').css("display", "none");
$('.e-contact').fadeIn();
$('.intro').css("display", "none");
});
});
</script>
</html>