-
Notifications
You must be signed in to change notification settings - Fork 6
/
ducati.html
141 lines (123 loc) · 6.45 KB
/
ducati.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
<!DOCTYPE html>
<html lang="en" class="deeplearning">
<head>
<title>BIKE PIT | 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 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>The BIKE PIT By Ducati</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: 13 March 2019</p>
<p>Time: 9 am - 3 pm</p></strong>
<p>
In the current day scenario where India is becoming a huge market for super-bikes and where we can witness huge evolution of riding clubs and bike enthusiasts this workshop detailing the build and make of Ducati motorbikes along with introducing their advanced safety features, ABS, Fuel injection and Cooling System and Framework/Chassis and suspension Mechanism.<br><br>
Ducati being a premiere bike manufacturer will introduce the students to all aspects of super-bikes and safety needed while handling them. There will be a live analysis test done on the Ducati engine and test its performance.<br><br>
The workshop helps students to increase the knowledge on safety riding and precautions to be taken while riding a bike. It helps them to prepare themselves in case of breakdown and other roadside emergencies. <br><br>
At last there will be an interactive session by Stunt Riders about safety ,emergency tackling methods and tips for riding .
<br>
1.New technology used in bikes<br>
2.Basic bike maintenance<br>
3.Emergency tackling<br>
4.Basic bike safety<br>
5.Basic knowledge of different parts of a super-bike
</p>
</div>
<div class="e-register">
<div class="row">
<div class="col-lg-6 left-acc">
<p><STRONG> Registration fee per person </STRONG>: <strong>₹ 500 </strong></p>
<form action="https://www.yepdesk.com/bike-pit-by-ducati" 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>Cherry Mathew Roy</li>
<div class = 'contact-info' style = "text-decoration:none; color:inherit;">
<ul style = "list-style-type:none;">
<li>Phone : <a href = "tel:9747420341" style = "color:black;">+91-9747420341</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>