-
Notifications
You must be signed in to change notification settings - Fork 0
/
tools.html
148 lines (108 loc) · 5.25 KB
/
tools.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<meta name="description" content="Annual charity show">
<meta name="keywords" content="Animal charity, raise funds for animals">
<meta name="author" content="Wakil Ahmed">
<title>ACS | Tools and Calculators</title>
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<header>
<div class="container">
<div id="branding">
<h1><span class="highlight">Annual</span> Charity Show</h1>
</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="charity.html">Charity Events</a></li>
<li><a href="fund.html">Fund Raising</a><ul>
<li><a href="#">Donate Us</a></li>
<li><a href="#">Our Shelters</a></li>
</ul>
</li>
<li><a href="community.html">Community</a></li>
<li><a href="news.html">News & Reviews</a></li>
<li class="current"><a href="tools.html">Tools and Calculators</a></li>
<li><a href="joinus.html">Join Us Now</a></li>
</ul>
</nav>
</div>
</header>
<div class="total_tools_page">
<div class="animalcost">
<div>
<h2>Dog expenses</h2>
<h3>One-time dog expenses</h3>
<p class="costpara">• Spaying or Neutering: €162.85 <br>
• Initial Medical Exam: €57.00 <br>
• Collar or Leash: €24.43 <br>
• Crate: €77.35 depending on size <br>
• Carrying Crate: €48.86 <br>
• Training: €89.57 <br>
• Total One-time Costs: €460</p>
<h3>Annual dog expenses</h3>
<p class="costpara">• Food: €97.71 <br>
• Annual Medical Exams: €191.35 <br>
• Toys and Treats: €44.78 <br>
• Pet Health Insurance: €183.21 <br>
• Miscellaneous: €36.64 <br>
• Total Annual Costs: €565</p>
</div>
<!-- <img src="img/12540417185_489a1744462_o.jpg" alt="catdog">-->
<div class="calculation">
<h3>Calculate Your Pets Annual Expenses</h3><br>
<form>
<p>Pet Type:</p> <select name="Pet_type" required>
<option value="">SELECT</option>
<option value="Dog"> Dog </option>
<option value="Cat"> Cat </option>
</select>
<p>Age: </p><input name="Pets_age" type="number" placeholder="Pets age" required> <br>
<p>Weight:</p> <input name="Pets_age" type="number" placeholder="Pets weight in pound" required>
<p> Activity: </p><select name="activity" required>
<option value="">SELECT</option>
<option value="Active"> Active </option>
<option value="Average"> Average </option>
<option value="Not_Active"> Not Active </option>
</select>
<p>What you Want To Calculate:</p> <select name="type" required>
<option value="">SELECT</option>
<option value="Active"> Food expenses </option>
<option value="Average"> Vet bills </option>
<option value="Not_Active"> Insurance Expenses </option>
<option value="Not_Active"> Basic Care Expenses </option>
</select>
<input type="button" value="Calculate"><br><br>
<input type="text" value="Net ammount: €565" disabled>
</form>
</div>
<div>
<h2>Cat expenses</h2>
<h3>One-time cat expenses</h3>
<p class="costpara">• Spaying or Neutering: €118.07 <br>
• Initial Medical Exam: €105.85 <br>
• Collar or Leash: €8.14 <br>
• Litter Box: €20.36 <br>
• Scratching Post: €24.43 <br>
• Carrying Crate: €32.57 <br>
• Total One-time Costs: €297</p>
<h3>Annual cat expenses</h3>
<p class="costpara">• Food: €118.07 <br>
• Annual Medical Exams: €105.85 <br>
• Litter: €162.85 <br>
• Toys and Treats: €20.36 <br>
• Pet Health Insurance: €142.49 <br>
• Miscellaneous: €24.43 <br>
• Total Annual Costs: €574</p>
</div>
</div>
</div>
<footer>
<p>Annual Charity Show, Copyright ©2018</p>
</footer>
</body>
</html>