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 pathWhatIsMicroBit.html
More file actions
72 lines (66 loc) · 3.4 KB
/
WhatIsMicroBit.html
File metadata and controls
72 lines (66 loc) · 3.4 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
<!DOCTYPE html>
<html id="body">
<head>
<title>Crankshaft Tech Coding - What is Micro:Bit?</title>
<link rel="stylesheet" type="text/css" href="style8.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 href="Lessons.html">Lessons</a>
<a href="AboutMe.html">About Me</a>
<a href="https://blog.crankshafttech.com/" target="_blank">My Blog</a>
<a href="WhatIsScratch.html">What is Scratch?</a>
<a href="WhatIsSmallBasic.html">What is Small Basic?</a>
<a class="selected">What is Micro:Bit?</a>
</div>
</div>
</div>
<div id="title">
<h1>Crankshaft Technology</h1>
</div>
</div>
<div id="content">
<div id="main">
<h1>What is Micro:Bit?</h1>
<p><b>Micro:Bit</b> is a little coding development board that can be used with many different styles of coding, including blocks, and MicroPython (text-based). It also has many hardware features, like buttons, LED's, and much more. <br> The Micro:Bit can be coded in many different langauages, including the block-based MakeCode, text-based MicroPython, and even Arduino!</p>
<p>For more information, check out the <a href="https://microbit.org/">Micro:Bit Website.</a></p>
<div id="img">
<img src="bottom-banner-microbit.png" width=100% alt="Micro:Bit logo"/>
</div>
</div>
</div>
<div id="copyright">
2020 Crankshaft Technology
</div>
</div>
</body>
</html>