-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathindex.html
37 lines (35 loc) · 1.26 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="A website to view github profiles created using Bulma for Hacktoberfest, 2022!" />
<meta name="color-scheme" content="light dark" />
<title>Sidejourney - Search for github profiles</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.4/css/bulma.min.css" />
<link rel="stylesheet" href="style.css" />
<script src="index.js" defer></script>
</head>
<body>
<div>
<a href="https://github.com/goodmanslaugh/sidejourney"><img class="github"
src="./icongithub.png"
alt="github logo"></a>
</div>
<section class="section">
<div class="container">
<img src="logo.png" id="logo" alt="Sidejourney">
<p class="subtitle">
A website to view github profiles created using
<strong><a href="https://bulma.io/" target="_blank">Bulma</a></strong> for <strong>Hacktoberfest, 2022</strong>!
</p>
<br>
<form id="form">
<input class="searchText" type="text" id="search" placeholder="Search a Github User" />
</form>
<main id="main"></main>
</div>
</section>
<script src="index.js" defer></script>
</body>
</html>