-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (25 loc) · 811 Bytes
/
index.html
File metadata and controls
26 lines (25 loc) · 811 Bytes
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Onboarding Visualization</title>
<link rel="icon" type="image/x-icon" class="js-site-favicon" href="assets/favicon.ico">
<link rel="stylesheet" href="./index.css">
</head>
<body>
<div class="navbar">
<a class="about">About</a>
</div>
<div class='wholeScreen'>
<h1>Onboarding Visualization</h1>
<h3>Is your repository friendly to newcomers?</h3>
<h4>github.com/
<input type="text" id="username" placeholder="username">
/
<input id="repo" type="text" name="repository" placeholder="repository">
</h4>
<p id="errorMessage">Repository not found.<p>
</div>
</body>
<script src="src/index.js" type="text/javascript"></script>
</html>