-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (39 loc) · 1.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Github Profiles</title>
<link rel="stylesheet" href="custom.css" />
<link rel="stylesheet" href="./mediaQuery.css">
<link rel="icon" type="image/x-icon" href="/image/icons8-github.svg">
<script src="app.js" defer></script>
</head>
<body>
<form id="form" onsubmit="return formSubmit()">
<input type="text" id="search" autofocus placeholder="Search a Github User Here" />
</form>
<main id="main">
<!-- Basically this section is comment out for default tempelate for under standing purpose only if you want to remove then remove!! -->
<!-- <div class="card">
<div>
<img class="avatar" src="https://picsum.photos/200" alt="Florin Pop">
</div>
<div class="user-info">
<h2>Name</h2>
<p>Bio</p>
<ul class="info">
<li>###<strong>Followers</strong></li>
<li>##<strong>Following</strong></li>
<li>###<strong>Repos</strong></li>
</ul>
<div id="repos">
<a class="repo" href="#" target="_blank">Repo 1</a>
<a class="repo" href="#" target="_blank">Repo 2</a>
<a class="repo" href="#" target="_blank">Repo 3</a>
</div>
</div>
</div> -->
</main>
</body>
</html>