-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (37 loc) · 1.46 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Timestamp Microservice</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.14.1/moment.min.js"></script>
</head>
<body>
<div class="container">
<div class="jumbotron">
<h1>Timestamp Microservice</h1>
<hr />
<h3>This is an API which can convert between unix time and a given date</h3>
<br />
<h4>Instructions for use</h4>
<hr />
<div class="well">
<p>Conversion to unix time can be done in many ways</p>
<code>https://timestamp-converter.herokuapp.com/August 11, 2016</code><br />
<code>https://timestamp-converter.herokuapp.com/August11,2016</code><br />
<code>https://timestamp-converter.herokuapp.com/August%2011,%202016</code><br />
<code>https://timestamp-converter.herokuapp.com/Aug11,2016</code>
</div>
<div class="well">
<p>Conversion to natural date</p>
<code class="current">https://timestamp-converter.herokuapp.com/1470973348</code>
</div>
</div>
</div>
<footer class="footer">
<div class="container">
<h4 class="text-center">Johnathan Brown — 2016</h4>
</div>
</footer>
</body>
</html>