-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmaths.html
41 lines (36 loc) · 1.19 KB
/
maths.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="I want to create a simple calculator.">
<meta name="keyword" content="calculator, science, maths, physics, chemistry">
<meta name="author" content="Muktar Bello">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>maths</title>
<script type="text/JavaScript" src="script.js"></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="homeicon">
<a href="index.htm"><img src="IMG_20230203_010533.jpg" alt="home icon" height="27" width="30"></a>
</div>
<div id="top">
<img src="math.png" alt="a good looking picture" height="80" width="80">
<span id="format">Mathematics</span>
</div>
<div id="subj">
<select id="topics">
<option selected disabled>Select the topic</option>
<option>Area</option>
<option>Volume</option>
<option>Perimeter</option>
</select>
<button id="select" onClick="topic()">Ok</button>
</div>
<br><br>
<div id='topic'>
</div>
<div id="calc">
</div>
</body>
</html>