-
Notifications
You must be signed in to change notification settings - Fork 135
/
dogCalculator.html
34 lines (30 loc) · 1.1 KB
/
dogCalculator.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Doggie 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=Luckiest+Guy&display=swap" rel="stylesheet">
<link href="dogCalculator.css" rel="stylesheet" type="text/css" />
<script defer src="dogCalculator.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>Doggie Age Calculator</h1>
<img src="https://media3.giphy.com/media/yc5l73hFEJJtnBRztr/giphy.gif?cid=ecf05e47u11yy0c0urngmj9gxd6wesr6u93ynov7jhcli1ld&rid=giphy.gif&ct=s">
<div id="calculator">
<input type="text" class="input" value="">
<input type="button" class="clear" value=" C ">
<input type="button" class="equals" value="=">
<br>
</div>
<div class="result">
</div>
</body>
</html>