-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.html
29 lines (29 loc) · 861 Bytes
/
home.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
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=initial-width, initial-scale=1.0" />
<title>Solids, Liquids and Gases</title>
<link rel="stylesheet" href="headerandnavmq.css">
<style>
p {
font-family: Arial, Verdana, sans-serif;
text-align: justify;
}
</style>
</head>
<body>
<div class="header">
<h1>Home</h1>
</div>
<div class="topnav">
<a href="home.html" class="active">Home</a>
<a href="solids.html">Solids</a>
<a href="liquids.html">Liquids</a>
<a href="gases.html">Gases</a>
</div>
<p>Welcome to Solids, Liquids & Gases</p>
<p>The Solids page provides examples of solids, which can be elements or compounds.</p>
<p>The Liquids page provides examples of liquids, which can be elements or compounds.</p>
<p>The Gases page provides examples of gases, which can be elements or compounds.</p>
</body>
</html>