-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
97 lines (77 loc) · 2.39 KB
/
index.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
<html>
<head>
<link rel="stylesheet" href="style.css">
<script src="tutorials.js"></script>
<script src='http://127.0.0.1:9001/js/socket.js'></script>
</head>
<body onload="afterLoad();">
<div class="head">
<h1 class="rainbow"><u>Visual Programming</u></h1>
</div>
<div class="section">
<div class="header">
<h2>What is programming</h2>
</div>
<div class="text cloud">
<h2>A set of instructions that tell a computer what to do</h2>
</div>
<div class="list scroll">
<h2>A computer:</h2>
<ul>
<li>Has a perfect memory</li>
<li>Ensures 100% accuracy</li>
<li>Will do exactly what you tell it to do</li>
</ul>
</div>
</div>
<div class="section">
<div class="header">
<h2>What is <b>Visual</b> Programming</h2>
</div>
<div class="left">
<div class="banner">
<h3>Easy to understand</h3>
</div>
<div class="banner">
<h3>Intuitive and Simple</h3>
</div>
<div class="banner">
<h3>Really Fun!!</h3>
</div>
</div>
<div class="right">
<img src=""/>
</div>
</div>
<div class="section">
<div class="header">
<h2>Movement</h2>
</div>
<div class="left">
<pre class="b">move (10) steps</pre>
</div>
<div class="right">
<img src=""/>
</div>
<div class="left">
<pre class="b">turn (15) degrees</pre>
</div>
<div class="right">
<img src=""/>
</div>
<div class="left">
<pre class="b">point in direction (180)</pre>
<pre class="b">move (10) steps</pre>
</div>
<div class="right">
<img src=""/>
</div>
</div>
</div>
<div class="section">
<div class="header">
<h2>Looks</h2>
</div>
</div>
</body>
</html>