-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathholiday-calculator.html
79 lines (58 loc) · 2.85 KB
/
holiday-calculator.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
<!DOCTYPE html>
<html lang="en-GB">
<head>
<meta charset="utf-8">
<title>Holiday Calculator - Rattle</title>
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="styles.css">
<link rel="canonical" href="http://www.rattlecentral.com/holiday-calculator">
<meta name="twitter:url" content="http://www.rattlecentral.com/holiday-calculator">
<meta property="og:url" content="http://www.rattlecentral.com/holiday-calculator">
<meta property="og:title" content="Holiday Calculator">
<meta name="twitter:title" content="Holiday Calculator">
<meta name="description" content="An HTML5 app for keeping track of your annual leave.">
<meta property="og:description" content="An HTML5 app for keeping track of your annual leave.">
<meta name="twitter:description" content="An HTML5 app for keeping track of your annual leave.">
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@rattlecentral">
<meta property="og:site_name" content="Rattle">
</head>
<body class="project">
<div class="container">
<header role="banner">
<h1><a href="./"><img src="images/logo.png"> <span>Rattle</span></a></h1>
</header>
<article>
<header>
<h2>Holiday Calculator</h2>
</header>
<section role="complementary">
<figure>
<img src="images/holiday-calculator-app.png" alt="">
</figure>
</section>
<section role="main">
<p>The inspiration behind this app was to solve a very simple problem that I a lot of people experience. Namely, keeping check on how much annual leave they’ve used up so far in a given year.</p>
<p>We built this app over a couple of days to answer this question – and only this question.</p>
<p>Using HTML5 technologies, the app is ‘installable’ on a mobile phone by simply adding it to your home screen. All the date you enter is simple stored locally on your own device. It even works offline.</p>
<p>Initially made for sale at a bargain price of £1, we’ve since open-sourced the code and made it available to anyone, free.</p>
<p><a href="http://www.rattlecentral.com/holidaycalculator/" class="link">www.rattlecentral.com/holidaycalculator</a></p>
</section>
<aside>
<h3>Project information</h3>
<dl>
<dt>Launched</dt>
<dd>July 2010</dd>
<dt>Team</dt>
<dd>
<a href="http://palefire.com/">Andrew Pendrick</a>,
<a href="http://www.frankieroberto.com/">Frankie Roberto</a>,
<a href="http://www.technogoggles.com/">James Boardwell</a>,
<a href="http://about.me/rjlee/">Rob Lee</a>
</dd>
</dl>
</aside>
</article>
</div>
</body>
</html>