-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
53 lines (46 loc) · 2.09 KB
/
about.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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About - DDOT API Samples</title>
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/site.css" rel="stylesheet">
<script src="scripts/modernizr-2.6.2.js"></script>
</head>
<body>
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">DDOT API Samples</a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</div>
</div>
<div class="container body-content">
<h2>About.</h2>
<h3>Sample application for DDOT Api services.</h3>
<p>The purpose of this sample application is to show basic methods of working with <a href="https://ddot.portal.azure-api.net/">DDOT API services</a> using Javascript and Google Maps. This sample only shows usage for a few API services, for the full list of services please go to the <a href="https://ddot.portal.azure-api.net/docs/services/">complete documentation</a>.</p>
<hr>
<footer>
<p>© 2015 - EastBanc Technologies LLC</p>
</footer>
</div>
<script src="scripts/jquery-1.10.2.js"></script>
<script src="scripts/bootstrap.js"></script>
<script src="scripts/respond.js"></script>
<script src="scripts/knockout-3.3.0.debug.js"></script>
</body>
</html>