-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathapiAjaxJson.html
More file actions
31 lines (27 loc) · 1.08 KB
/
apiAjaxJson.html
File metadata and controls
31 lines (27 loc) · 1.08 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>ApiAjaxJson models</title>
<meta name="ApiAjaxJson models" content="Demonstration of API using JSON and AJAX">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!-- <link rel="stylesheet" href="index.css"> -->
</head>
<body>
<main>
<section class="githubExample" style="border:solid">
<h1>Search on GitHub Repositories by Name</h1>
<form action="#" class="js-search-form">
<label for="query">Please provide a name: </label>
<input type="text" class="js-input" placeholder="e.g., John-Azzaro">
<button type="submit">Search</button>
</form>
<h2>Results</h2>
<div class="js-search-results"></div>
</section>
</main>
<script src="ApiAjaxJSon.js"></script>
</body>
</html>