-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (37 loc) · 1.3 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
50
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" sizes="32x32" href="./assets/favicon-32x32.png">
<link rel="stylesheet" href="style.css">
<title>Frontend Mentor | GitHub user search app</title>
</head>
<body class="dark">
<main>
<nav class="main-nav">
<h1 class="logo">devfinder</h1>
<div class="theme">
<span class="theme-name"></span>
<span class="theme-icon">
<img src="" alt="theme-toggler">
</span>
</div>
</nav>
<div class="search-bar">
<form method="get" id="form">
<img src="./assets/icon-search.svg" alt="search">
<input type="text" placeholder="Search GitHub username..." id="search">
<span class="no-result" id="no-result">No Results</span>
<button type="submit" class="search-btn">Search</button>
</form>
</div>
<div id="main">
</div>
</main>
<script src="https://cdnjs.cloudflare.com/ajax/libs/axios/0.25.0/axios.min.js"
integrity="sha512-/Q6t3CASm04EliI1QyIDAA/nDo9R8FQ/BULoUFyN4n/BDdyIxeH7u++Z+eobdmr11gG5D/6nPFyDlnisDwhpYA=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="script.js"></script>
</body>
</html>