-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (45 loc) · 1.66 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title id="title">DotaAPI</title>
<link id="css" rel="stylesheet" type="text/css" href="/home.css" />
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro|Work+Sans:200,500|Roboto:300" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Anton&display=swap" rel="stylesheet">
</head>
<body>
<header>
<img src="https://www.logosurfer.com/wp-content/uploads/2018/03/dota-2-logo_0.png"/>
</header>
<main>
<div class="content">
<div class="search">
<h1>Enter a Player's ID</h1>
<form id="form" autocomplete="off">
<input class="input-field" type="text" id="input" value="86745912"><br/>
<button id="submit">SUBMIT</button>
</form>
<div class="response-field" id="responseField">
</div>
</div>
</div>
<div class="footer">
<h4>Find me at:</h4>
<div>
<form class="btn-link" action="https://github.com/welbhen" target="_blank" rel="noopener noreferrer">
<button class="btn">GitHub</button>
</form>
<form class="btn-link" action="https://welbhen.github.io/" target="_blank" rel="noopener noreferrer">
<button class="btn">Portfolio</button>
</form>
<br/>
<small>By: Welberth Henrique Alves Marques</small>
</div>
</div>
</main>
<script src='https://code.jquery.com/jquery-3.1.0.min.js'></script>
<script type="text/javascript" src="main.js"></script>
<script type="text/javascript" src="helper.js"></script>
</body>
</html>