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 pathHeader.html
More file actions
43 lines (37 loc) · 1.42 KB
/
Header.html
File metadata and controls
43 lines (37 loc) · 1.42 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
<!DOCTYPE html>
<html>
<head>
<title>Header</title>
<link rel="stylesheet" type="text/css" href="style.css"/>
<meta name="viewport" content="width=device-width,initial-scale=1">
<!-- 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>
</head>
<body>
<div id="logo">
<a href="index.html"><img class="imglogo" src="logo.png" width="100%"/></a>
</div>
<div class="dropdown" style="float:right;">
<button class="dropbtn">Menu</button>
<div class="dropdown-content">
<a href="#" 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 id="title">
<h1>Crankshaft Technology</h1>
</div>
</body>
</html>