This repository was archived by the owner on Mar 17, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLessons.html
More file actions
79 lines (71 loc) · 3.56 KB
/
Lessons.html
File metadata and controls
79 lines (71 loc) · 3.56 KB
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
<!DOCTYPE html>
<html id="body">
<head>
<title>Crankshaft Tech Coding - Lessons</title>
<link rel="stylesheet" type="text/css" href="style7.css"/>
<link rel="icon" href="favicon.ico" type="image/x-icon"/>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-130790158-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-130790158-1');
</script>
<script src="javascript.js"></script>
</head>
<body>
<div id="container">
<div id="header">
<div id="logo">
<a href="/"><img class="imglogo" src="logo.png" width="100%"/></a>
</div>
<div class="dropimg">
<img onclick="openSidebar()" id="menuButton2" class="dropbtn2" src="menu.png">
</div>
<div class="dropdown" style="float:right;">
<button class="dropbtn" id="menuButton" onclick="openSidebar()">☰</button>
<div class="sideMenu" id="mainMenu">
<a href="javascript:void(0)" class="closebtn" onclick="closeSideBar()">×</a>
<div class="dropdown-content" >
<a href="/">Home</a>
<a href="Contact.html">Contact</a>
<a class="selected">Lessons</a>
<a href="AboutMe.html">About Me</a>
<a href="https://blog.crankshafttech.com/">My Blog</a>
<a href="WhatIsScratch.html">What is Scratch?</a>
<a href="WhatIsSmallBasic.html">What is Small Basic?</a>
<a href="WhatIsMicroBit.html">What is Micro:Bit?</a>
</div>
</div>
</div>
<div id="title">
<h1>Crankshaft Technology</h1>
</div>
</div>
<div id="content">
<div id="main">
<h1>Lessons</h1>
<div>
<div id="img1">
<img height="290px;" src="catching-balls-game.png" width=100% alt="Catching Balls Game"/>
</div >
<p>Lessons are completed in Scratch and Small Basic. They include creating fun games and completing engaging challenges.<br>Games and challenges include: <br>- Virtual pet <br>- Ball catching basket <br>- Hide and seek <br>- Soccar scoring <br>- Character racing <br>- And more!</p>
</div>
<div id="img">
<img class="leftimg" width="40%" src="scratch.png" width=100% alt="Scratch Logo"/>
<img class="rightimg" width="40%" src="small-basic.png" width=100% alt="Small Basic Logo"/>
</div>
</div>
</div>
<div id="copyright">
2020 Crankshaft Technology
</div>
</div>
</body>
</html>