-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
89 lines (75 loc) · 1.98 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
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Snowmaking for Small Organizations</title>
<link href="snowstyles.css" rel="stylesheet" type="text/css">
</head>
<!---CONTAINER--->
<body>
<div id="container">
<!---BANNER--->
<div id="banner">
<a href="index.html"><img src="snowmaking-logo.png" width="250" height="100" alt="Logo"/></a>
</div>
<!---NAVIGATION--->
<div id="navigation">
<style>
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #658085;
}
li {
float: left;
border-right: 1px solid #d2d1ce;
text-align: center;
text-decoration: none
}
li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none
}
li a:hover:not(.active) {
background-color: #93a6a9;
}
.active {
background-color: #93a6a9;
}
</style>
<ul>
<li style="float:right"><a href="costs.html" title="Costs">Costs</a></li>
<li style="float:right"><a href="process.html" title="Process">Process</a></li>
<li style="float:right"><a href="contact.html" title="Contact">Contact</a></li>
<li style="float:right"><a href="about.html" title="About">About</a></li>
<li style="float:right"><a href="index.html" title="Home">Home</a></li>
</ul>
</div>
<!---MAIN--->
<div id="main">
<h1>Welcome Snowmaking for Small Organizations </h1>
<style>
img {
float: left;
margin: 0px 100px 20px 75px;
}
</style>
<img src="IMG_2586.png" width="560" height="420" alt="Snowmaking in a field"/>
<img src="snowmaking-welcome.png" width="460" height="360" alt="Snowmaking Welcome"/>
</div>
<!---FOOTER--->
<div id="footer">
<a href="index.html" title="Home">HOME</a> |
<a href="about.html" title="About">ABOUT</a> |
<a href="contact.html" title="Contact">CONTACT</a> |
<a href="process.html" title="Process">PROCESS</a> |
<a href="costs.html" title="Costs">COSTS</a>
</div>
</div>
</body>
</html>