-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
125 lines (108 loc) · 4.49 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- SEO Meta Tags -->
<meta
name="description"
content="Find out how old your pet is in human years using our easy-to-use birthday calculator. Supports dogs and cats!"
/>
<meta
name="keywords"
content="pet age calculator, dog age calculator, cat age calculator, calculate pet age, dog years to human years, cat years to human years, pet care"
/>
<meta name="author" content="Andrey Kudinov" />
<!-- Open Graph Meta Tags -->
<meta property="og:title" content="Calculate Your Pet's Birthday" />
<meta
property="og:description"
content="Easily calculate your pet's age in human years using our pet age calculator. Accurate for both dogs and cats!"
/>
<meta property="og:image" content="favicons/favicon.png" />
<meta property="og:url" content="https://calc-pet-bday.ru" />
<meta property="og:type" content="website" />
<!-- Twitter Card Meta Tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Pet Age Calculator - Find Your Pet's Age in Human Years" />
<meta name="twitter:description" content="Easily calculate your pet's age in human years using our pet age calculator!" />
<meta name="twitter:image" content="favicons/favicon.png" />
<link rel="apple-touch-icon" sizes="180x180" href="favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicons/favicon-16x16.png">
<link rel="manifest" href="favicons/site.webmanifest">
<link rel="stylesheet" href="style.css" />
<script src="main.js" defer></script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-CQ379J21HS"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-CQ379J21HS');
</script>
<title>Calculate Your Pet's Birthday</title>
</head>
<body>
<div class="container right">
<a class="link" href="/how-it-works.html">How it works?</a>
</div>
<div class="container">
<h1 class="title">Calculate Your Pet's Birthday</h1>
</div>
<div class="container container--narrow">
<form action="/calculate" method="POST">
<div class="form-group">
<label for="pet-name">Pet Name:</label>
<input type="text" id="pet-name" name="pet-name" required />
</div>
<fieldset class="form-group">
<legend>Pet Type:</legend>
<div class="radio-group">
<input type="radio" id="cat" name="pet-type" value="cat" required />
<label for="cat">Cat</label>
</div>
<div class="radio-group">
<input type="radio" id="dog" name="pet-type" value="dog" required />
<label for="dog">Dog</label>
</div>
</fieldset>
<div class="form-group">
<label for="birth-year">Birth Year:</label>
<input type="date" id="birth-year" name="birth-year" required />
</div>
<div class="form-group">
<button class="submit-btn button" type="submit">
<span class="button-shadow"></span>
<span class="button-edge"></span>
<span class="button-front text">
<strong>Calculate</strong>
</span>
</button>
<button class="reset-btn button" type="reset">
Reset
</button>
</div>
</form>
</div>
<div class="container container--narrow">
<button data-prev-button class="add-year-btn button hidden">
<span class="button-shadow"></span>
<span class="button-edge"></span>
<span class="button-front text">
Add Birthdays for <strong><span data-prev-year></span></strong>
</span>
</button>
</div>
<div class="container container--narrow" id="result"></div>
<div class="container container--narrow">
<button data-next-button class="add-year-btn button hidden">
<span class="button-shadow"></span>
<span class="button-edge"></span>
<span class="button-front text">
Add Birthdays for <strong><span data-next-year></span></strong>
</span>
</button>
</div>
</body>
</html>