-
Notifications
You must be signed in to change notification settings - Fork 135
/
snackCalculator.html
37 lines (33 loc) · 1.4 KB
/
snackCalculator.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Snack Calculator</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Gloria+Hallelujah&display=swap" rel="stylesheet">
<link href="snackCalculator.css" rel="stylesheet" type="text/css" />
<script defer src="snackCalculator.js"></script>
</head>
<body>
<div class="navbar">
<a href="index.html">Do Now</a>
<a href="dogCalculator.html">Dog Calculator</a>
<a href="snackCalculator.html">Snack Calculator</a>
</div>
<h1>Lifetime Supply Calculator</h1>
<img
class="pusheen" src="https://media3.giphy.com/media/npQihcCpeVeWiFRLb3/giphy.gif?cid=ecf05e47bbibwtsk8vfmt33ft02qpbd2brj48agknmg26zxj&rid=giphy.gif&ct=s">
<img class="snacks" src="https://media4.giphy.com/media/YkmjQskN3Rg4z1bBMR/giphy.gif?cid=ecf05e47bbibwtsk8vfmt33ft02qpbd2brj48agknmg26zxj&rid=giphy.gif&ct=ts">
<div id="calculator">
<input type="text" class="ageInput" value="" placeholder="Your age">
<input type="text" class="numInput" value="" placeholder="# of snacks per day">
<input type="button" class="clear" value=" C ">
<input type="button" class="equals" value="=">
<br>
</div>
<div class="result">
</div>
</body>
</html>