-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (31 loc) · 904 Bytes
/
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 lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Web APIs</title>
<!-- Bootstrap -->
<link rel="stylesheet" href="bootstrap.min.css">
</head>
<body ng-app="webAPIs">
<div class="container">
<div class="row col-sm-12">
<h1>Web APIs</h1>
</div>
<what-is-rest></what-is-rest>
<watson-sdk></watson-sdk>
<useful-apis></useful-apis>
<api-vs-web-service></api-vs-web-service>
<custom-api></custom-api>
<nosql-databases></nosql-databases>
<couchdb></couchdb>
<mongodb></mongodb>
<api-call-formats></api-call-formats>
</div><!-- .container -->
<!-- Vendor -->
<script src="angular.min.js"></script>
<script src="bootstrap.min.js"></script>
<script src="app.js"></script>
</body>
</html>