-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcosts.html
146 lines (128 loc) · 3.17 KB
/
costs.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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Snowmaking Costs</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>Costs</h1>
<p>
<style>
table {
border-collapse: collapse;
width: 100%;
}
th, td {
text-align: left;
padding: 8px;
}
tr:nth-child(even){background-color: #d2d1ce}
th {
background-color: #716d6d;
color: white;
}
</style>
<h2>Edina Nordic's Snowmaking Costs</h2>
<table>
<tr>
<th>Item</th>
<th>Name</th>
<th>Price</th>
</tr>
<tr>
<td>Water</td>
<td>City of Edina's Water Supply*</td>
<td>~ $2000</td>
</tr>
<tr>
<td>Air Compressor</td>
<td>Ziegler Air Compressor</td>
<td>??? (rented)</td>
</tr>
<tr>
<td>Snowmaker</td>
<td>Cornice III Snowmaker</td>
<td>$1990</td>
</tr>
<tr>
<td>Water Pump</td>
<td>Davey Self-Priming High Pressure Water Pump (7200 GPH, 144 PSI, 9HP)</td>
<td>$2700</td>
</tr>
<tr>
<td>Snow Hose</td>
<td>Multiple 50 ft Long Sections</td>
<td>~ $400 ea.**</td>
</tr>
<tr>
<td>Sno-Cat</td>
<td>Track Inc. Sno-Cat</td>
<td>Varies (rented)***</td>
</tr>
</table>
</p>
<br>
<h2>Notes</h2>
<p>Prices will vary between companies and amount of product purchased. These numbers are just here to serve as a tool to help you estimate snowmaking costs for your group.</p>
<p>*Estimated 1 million gallons of water</p>
<p>**Per an Edina Nordic coach, they have approximately $6000 of snow hoses now.</p>
<p>***At least during year one of snowmaking, the use of a Sno-Cat was free of charge. Track Inc. features used and new Sno-Cats for purchase. Some may be able to be rented. </p>
</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>