-
Notifications
You must be signed in to change notification settings - Fork 0
/
interactiveapps.html
27 lines (27 loc) · 1.16 KB
/
interactiveapps.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
<html>
<head>
<link rel="stylesheet" href="stylesheet.css">
<title>Computer Science Website</title>
<link rel="shortcut icon" href="icon.png">
</head>
<body>
<div class="title">Unit One</div>
<div class="title2">Interactive Apps</div>
<h1 class="heading">Binary Converter</h1>
<p style="width: 50%;" class="paragraph">Simple JavaScript program to convert between binary and denary numbers.</p>
<div class="container">
<img src="binaryconverter.png" alt="Binary Converter">
<a href="binaryconverter.html"><input class="imgbutton" type="button" value="Launch App"/></a>
</div>
<div id="navbar">
<ul>
<li><a href="home.html"><img src="homeicon.png" class="home" style="height: 14px; filter: invert(100%);"> Home</a></li>
<li><a href="gcse/gcse.html">GCSE</a></li>
<li><a href="alevel/alevel.html">A Level</a></li>
<li style="float: right"><a href="about.html">About</a></li>
<li style="float: right"><a href="search.html">Search</a></li>
<li style="float: right"><a href="interactiveapps.html" class="active">Interactive Apps</a></li>
</ul>
</div>
</body>
</html>