-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (31 loc) · 1.11 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta http-equiv="X-UA-Compatible" content="ie=edge"/>
<link rel="icon" href="img/favicon_000.png">
<link rel="stylesheet" type="text/css" href="css/styles.css">
<title>GitHub</title>
</head>
<body>
<header id="main-header">
<img src="img/favicon_fff.png" />
<form>
<input id="txt_user" type="text" placeholder="Username" />
<input id="btn_find" type="submit" value="Find" />
</form>
</header>
<div id="container"></div>
<footer id="main-footer">
<a href="./documentation.html">Documentation</a>
</footer>
<script src="js/index.js"></script>
<script>
const stopSubmitAction = event => {
event.preventDefault();
}
document.getElementById('btn_find').addEventListener('click', stopSubmitAction);
</script>
</body>
</html>