-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
29 lines (22 loc) · 697 Bytes
/
index.php
File metadata and controls
29 lines (22 loc) · 697 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Measurement Conversion</title>
<link href="styles.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id="main-content">
<h1>Measurement Conversion</h1>
<ul id="measurement-types">
<li><a href="length.php">Length and distance</a></li>
<li><a href="area.php">Area</a></li>
<li><a href="volume.php">Volume and capacity</a></li>
<li><a href="mass.php">Mass and weight</a></li>
<li><a href="speed.php">Speed</a></li>
<li><a href="temperature.php">Temperature</a></li>
</ul>
</div>
</body>
</html>