-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (23 loc) · 820 Bytes
/
index.html
File metadata and controls
30 lines (23 loc) · 820 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
27
28
29
30
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="/css/style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Nunito&display=swap" rel="stylesheet">
<title>Github Dev Analyzer</title>
</head>
<body>
<h1>Github Dev Analyzer</h1>
<form>
<label for="username">Enter Github Username:</label>
<input type="text" id="username" name="username">
<button type="submit" id="submit">Analyze</button>
</form>
<div id="results"></div>
<div id="loading">
<img src="/img/loading.gif" alt="Loading...">
</div>
<script src="/js/app.js" crossorigin="anonymous"> </script>
</body>
</html>