-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
80 lines (75 loc) · 2.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="author" content="Shashi" />
<meta
name="description"
content="Rendering Remote APIs In A Webpage Using HTML, jQuery Ajax Method & PHP"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>AJAXistic</title>
<link href="libs/css/style.css" rel="stylesheet" />
</head>
<body onload="preLoader()">
<h1>
<span class="animate">AJAXistic</span>
Rendering Remote API's In A Webpage Using HTML, jQuery Ajax Method & PHP
</h1>
<div id="preloader"></div>
<div id="apiTable" class="animate-bottom">
<table>
<thead>
<tr id="head">
<th>API Name</th>
<th>API Description</th>
<th>Click Submit</th>
</tr>
</thead>
<tbody>
<tr>
<td class="apiName">Wikipedia</td>
<td class="apiDescription">
Returns the Wikipedia entries found for the search term.
</td>
<td class="wrap">
<button class="button" id="wikiBtn">Submit</button>
</td>
</tr>
<tr>
<td class="apiName">Weather</td>
<td class="apiDescription">
Returns a list of Weather stations with the most recent weather
observations.
</td>
<td class="wrap">
<button class="button" id="weatherBtn">Submit</button>
</td>
</tr>
<tr>
<td class="apiName">Country Information</td>
<td class="apiDescription">
Returns Country Info like Capital city, Population, Area in Square
KM.
</td>
<td class="wrap">
<button class="button" id="countryBtn">Submit</button>
</td>
</tr>
<tr>
<td colspan="4" id="results"></td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="3" id="foot">
ITCS Pre-Project Task: Coded by <a href="#">Shashi</a>
</td>
</tr>
</tfoot>
</table>
</div>
<script src="libs/js/jquery-2.2.3.min.js"></script>
<script src="libs/js/script.js"></script>
</body>
</html>