-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
121 lines (118 loc) · 3.56 KB
/
index.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
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>Unit Convertor</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<nav>
<div class="topnav">
<a class="active" href="#home">Home</a>
<a href="about.html">About Us</a>
<a href="history.html">History</a>
<a href="#rate us">Rate Us</a>
</div>
</nav>
<div class="home-title">
<h1 class="title">
A unit is a measurement of a quantity that is defined or adopted by
tradition or law
</h1>
<h2 class="subtitle">
The intent of this site is to provide a convenient means to convert
between the various units of measurement within different systems, as
well as to provide a basic understanding of the systems currently in
use, and how they interact.
</h2>
</div>
<div class="main">
<div class="tool_container">
<div class="tool_item">
<a href="area.html">
<img src="area.png" alt="area" width="75" height="75" />
<h3>Area</h3>
</a>
</div>
<div class="tool_item">
<a href="length.html">
<img src="length.png" alt="length" width="75" height="75" />
<h3>Length</h3>
</a>
</div>
<div class="tool_item">
<a href="pressure.html">
<img src="pressure.png" alt="pressure" width="75" height="75" />
<h3>Pressure</h3>
</a>
</div>
<div class="tool_item">
<a href="temperature.html">
<img
src="temperature.png"
alt="temperature"
width="75"
height="75"
/>
<h3>Temperature</h3>
</a>
</div>
<div class="tool_item">
<a href="time.html">
<img src="chronometer.png" alt="time" width="75" height="75" />
<h3>Time</h3>
</a>
</div>
<div class="tool_item">
<a href="weight.html">
<img src="weight-loss.png" alt="weight" width="75" height="75" />
<h3>Weight</h3>
</a>
</div>
<div class="tool_item">
<a href="mileage.html">
<img src="performance.png" alt="mileage" width="75" height="75" />
<h3>Mileage</h3>
</a>
</div>
<div class="tool_item">
<a href="data.html">
<img src="computing.png" alt="data" width="75" height="75" />
<h3>Data</h3>
</a>
</div>
<div class="tool_item">
<a href="speed.html">
<img src="speedometer.png" alt="shoe size" width="75" height="75" />
<h3>Speed</h3>
</a>
</div>
<div class="tool_item">
<a href="volume.html">
<img src="volume.png" alt="currency" width="75" height="75" />
<h3>Volume</h3>
</a>
</div>
<div class="tool_item">
<a href="men.html">
<img src="size-guide.png" alt="men cloth" width="75" height="75" />
<h3>Men Cloth</h3>
</a>
</div>
<div class="tool_item">
<a href="women.html">
<img
src="size-guide (1).png"
alt="women cloth"
width="75"
height="75"
/>
<h3>Women Cloth</h3>
</a>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>