-
Notifications
You must be signed in to change notification settings - Fork 0
/
service.html
101 lines (98 loc) · 2.47 KB
/
service.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
<!DOCTYPE html>
<html>
<head>
<title>Main Page</title>
<link rel="stylesheet" type="text/css" href="service.css">
<script src="https://code.jquery.com/jquery-3.2.1.js"></script>
<script type="text/javascript">
$(window).on('scroll', function(){
if ($(window).scrollTop()){
$('nav').addClass('black');
}
else
{
$('nav').removeClass('black');
}
})
</script>
</head>
<body>
<nav>
<div class="logo">
<img src="7.jpg">
</div>
<ul>
<li><a href="otd.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="service.html" class="active">Projects</a></li>
<li><a href="contact.html">FeedBack</a></li>
</ul>
</nav>
<section class="sec1">
<h1>ROBOTICS</h1>
</section>
<div class="s1">
<h1>Select your robotics project and start learning instantly</h1>
</div>
<div class="container">
<div class="box" align="center">
<div class="i">
<a href="s1.html">
<img src="103.jpg"></a>
</div>
</div>
<h1>Voice Controlled Robot</h1>
<p>Develop & control robot using your own<br> voice using an Anroid App</p>
</div>
<div class="container1">
<div class="box1" align="center">
<div class="i1">
<a href="s3.html">
<img src="10.jpg"></a>
</div>
</div>
<h1>Line Follower Robot</h1>
<p>An Ideal course for all to get started with Robotics & build their first robot</p>
</div>
<div class="container">
<div class="box" align="center">
<div class="i">
<a href="s4.html">
<img src="11.jpg"></a>
</div>
</div>
<h1>Light Following Robot</h1>
<p>Move your robot in the direction of Light</p>
</div>
<div class="container1">
<div class="box1" align="center">
<div class="i1">
<a href="s2.html">
<img src="113.jpg"></a>
</div>
</div>
<h1>Obstacle Avoiding Robot</h1>
<p>Develop your robot moving<br> constantly without any obstactle</p>
</div>
<div class="container">
<div class="box" align="center">
<div class="i">
<a href="s6.html">
<img src="9.jpg"></a>
</div>
</div>
<h1>Animatronic Hand</h1>
<p>Build a mechatronic hand that can mimic your hand movement</p>
</div>
<div class="container1">
<div class="box1" align="center">
<div class="i1">
<a href="s5.html">
<img src="14.jpg"></a>
</div>
</div>
<h1>Fire Fighting Robot</h1>
<p>Develop a robot that can sense fire<br> & put it off autonomously</p>
</div>
</body>
</html>