-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (47 loc) · 1.9 KB
/
index.html
File metadata and controls
58 lines (47 loc) · 1.9 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
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html class="preload" lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Git user search</title>
<!--=============== CSS ===============-->
<link rel="stylesheet" href="assets/css/style.css">
<!--=============== REMIXICONS ===============-->
<link href="https://cdn.jsdelivr.net/npm/remixicon@2.5.0/fonts/remixicon.css" rel="stylesheet">
<!--=============== FLAVICON ===============-->
<link rel="icon" type="image/png" sizes="32x32" href="/assets/imgs/flavicon.png">
</head>
<body>
<!--=============== HEADER ===============-->
<header class="header">
<div class="header__container">
<h2 class="header__logo">devfinder</h2>
<div class="header__theme-light theme__selector">
<span class="header__title">LIGHT</span>
<i class="ri-sun-fill header__icon"></i>
</div>
<div class="header__theme-dark theme__selector display-none opacity-hidden">
<span class="header__title">DARK</span>
<i class="ri-moon-fill header__icon"></i>
</div>
</div>
</header>
<!--=============== SEARCHBAR ===============-->
<section class="searchbar">
<form class="searchbar__form shadow" onsubmit="return false">
<div class="searchbar__input">
<i class="ri-search-line searchbar__icon"></i>
<input type="text" class="searchbar__textfield"
placeholder="Search GitHub username...">
</div>
<button class="searchbar__button button" type="submit">Search</button>
</form>
</section>
<!--=============== RESULT ===============-->
<section class="result">
</section>
<!--=============== JS ===============-->
<script type="module" src="assets/js/main.js"></script>
</body>
</html>