-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
81 lines (79 loc) · 3.19 KB
/
about.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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<title>About Us</title>
<link rel="stylesheet" type="text/css" href="about.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" class="active">About</a></li>
<li><a href="service.html">Projects</a></li>
<li><a href="contact.html">FeedBack</a></li>
</ul>
</nav>
<section class="sec1"></section>
<div class="l1">
<h1>Explore robot anatomy, control and behavior through a set of simulated tasks</h1>
</div>
<div class="box">
<img src="a11.jpg">
<p>Robots today are roving Mars, hovering our floors, building cars and entertaining us in films. And, if you share Stephen Hawking’s world view, the super intelligent ones may one day bring about the end of the human race.</p>
<img src="a12.jpg" style="float: right;">
<p >If you’d like to find out more, but don’t have Hawking’s brain or an advanced qualification in cybernetics, this course is for you. You won’t require a soldering iron, but you’ll explore the basics of robot design, control and behaviour through a series of simulations that will have you build some interesting robots.</p>
</div>
<div class="s1">
<h1>What topics will you cover?</h1>
<div class="container">
<div class="box">
<pre style="font-size: 25px;">•Introduction to the robot <br> simulations used in the course<br>
•Problem solving: <br> commanding a mobile robot to <br> move.<br>
•A description of the components <br> of a robot – sensors, actuators, <br> ’brain’ and power supply<br>
•An understanding of different <br> sensors,their operation and<br> application<br>
</pre>
</div>
</div>
<div class="container">
<div class="box" style="float: right; margin-top: -525px;">
<pre style="font-size: 25px; padding-right: 5px;">
•Feedback for Learning and robot: <br> robot interaction<br>
•Robot learning by trial and <br> error<br>
•Multiple robots and artificial <br> life,relating to biological<br> processes<br>
•Problem solving: commanding a <br> robot to traverse a maze
</pre>
</div>
</div>
</div>
<div class="s2">
<h1>Aim Of The Course</h1>
<p>
This course explores the basics of robotics. It doesn’t assume any prior<br>
knowledge and you don’t need to own your own robot to take part.<br>
This course includes video content and other visual teaching methods.<br>
And Arduino Uno code to code the desired robot. The site also provides<br>
detail information of aim, material required and procedure tips for<br>
making the robot.<br>
Please be aware that this course contains video clips that include <br>
sequences of flickering/flashing lights which might affect learners<br>
who are susceptible to photosensitive epilepsy.<br>
</p>
</div>
</body>
</html>