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 pathindex.html
More file actions
85 lines (76 loc) · 4.07 KB
/
index.html
File metadata and controls
85 lines (76 loc) · 4.07 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
80
81
82
83
84
85
<!DOCTYPE html>
<html id="body">
<head>
<title>Crankshaft Tech Coding - Home</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">
<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 class="selected">Home</a>
<a href="Contact.html">Contact</a>
<a href="Lessons.html">Lessons</a>
<a href="AboutMe.html">About Me</a>
<a target="_blank" 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="banner">
</div>
<div id="content">
<div id="main">
<p><a href="WhatIsScratch.html"><b>Scratch</b></a>, <a href="WhatIsSmallBasic.html"><b>Small Basic</b></a> and <a href="WhatIsMicroBit.html"><b>Micro:Bit</b></a> coding lessons run by a passionate high school student in Moggill, Brisbane Australia.<br><br>Lessons allow students to learn new skills with computers while having fun.</p>
</div>
<img src="">
<div id="buttons">
<input type="button" id="pagebtn" value="See Lessons" onclick="location.href='Lessons.html'">
<input type="button" id="pagebtn" value="Contact Me" onclick="location.href='Contact.html'">
<input type="button" id="pagebtn" value="See My Blog" onclick="window.open('https://blog.crankshafttech.com/')">
</div>
</div>
<center>
<div id="facebookpage">
<center>
<iframe class="facebookpage" src="https://www.facebook.com/plugins/page.php?href=https%3A%2F%2Fwww.facebook.com%2Fcrankshafttech%2F&tabs=timeline&width=500&height=500&small_header=false&adapt_container_width=true&hide_cover=false&show_facepile=false&appId" height="500" style="border:none;overflow:hidden" scrolling="no" frameborder="0" allowTransparency="true" allow="encrypted-media"></iframe>
</center>
</div>
</center>
<div id="copyright">
2020 Crankshaft Technology
</div>
</div>
</body>
</html>