-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (33 loc) · 1003 Bytes
/
index.html
File metadata and controls
35 lines (33 loc) · 1003 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Search Organization's Repositories</title>
<link rel="stylesheet" href="style.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
</head>
<body>
<menu>
<span id="img">
<img src="media/icon.png">
</span>
</menu>
<main>
<div id="brief-description">
<h1>Get Github Repositories</h1>
<p>Este sistema realiza uma <b>requisição</b> em uma api pública do github e retorna até <b>50</b> repositórios públicos de uma <b>organização</b> no github.</p>
</div>
<div id="search-section">
<form>
<input type="text" placeholder="Digite aqui o nome da organização" id="input"><input type="submit" id="search" value=" ">
</form>
</div>
<div id="results">
</div>
<div id="image">
<img src="media/Octocat.png">
</div>
</main>
<script src="script.js"></script>
</body>
</html>