-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (47 loc) · 1.71 KB
/
index.html
File metadata and controls
48 lines (47 loc) · 1.71 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="image/png" href="img/">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<title>UsersData Fetcher</title>
</head>
<body>
<div class="main card-panel teal darken-1" id="main">
<div class="container">
<div class="row">
<div class="col s12 text-align: center">
<div class="main__text-container">
<h1 class="main__title">UsersData Fetcher</h1>
<p class="main__subtitle">Get the most necessary info just by entering user's name</p>
</div>
<div class="main__input-container">
<input type="text" id="search" class="main__input" placeholder="Enter user's name...">
<span>
<a class="btn btn-success searchButton">Search</a>
</span>
</div>
</div>
</div>
<div class="main__profile-container">
<div class="main__profile">
<div class="row">
<div class="col s6">
<p class="main__profile-name main__profile-key flow-text"></p>
<p class="main__profile-username main__profile-key flow-text"></p>
<p class="main__profile-repos main__profile-key flow-text"></p>
<p class="main__profile-url main__profile-key flow-text"></p>
<p class="main__profile-location main__profile-key flow-text"></p>
</div>
<div class="col s4">
<p class="main__profile-avatar main__profile-key flow-text"></p>
</div>
</div>
</div>
</div>
</div>
</div>
<script type="text/javascript" src="js/app.js"></script>
</body>
</html>