-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
74 lines (59 loc) Β· 1.73 KB
/
index.html
File metadata and controls
74 lines (59 loc) Β· 1.73 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>GitHub Roaster</title>
<!-- π€ FONTS -->
<link href="https://fonts.googleapis.com/css2?family=Anton&family=Pacifico&family=Press+Start+2P&family=Poppins:wght@300;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- π HEADER -->
<div class="top-header">
<div class="bookmark">π Created by Charul</div>
<div class="logo">π» ROASTER</div>
</div>
<!-- π‘ TICKER -->
<div class="ticker">
<div class="ticker-text">
β Developers getting roasted worldwide β Improve your GitHub β Someone just got destroyed π β Build better projects β
</div>
</div>
<div class="container">
<h1>Fun, interesting & useful tool β never be boring again</h1>
<p>Analyze GitHub profiles, get roasted & improve π</p>
<!-- SEARCH -->
<div class="search-box">
<input id="username" placeholder="I'm bored... Enter GitHub username">
<button onclick="roastUser()">π</button>
</div>
<!-- GRID -->
<div class="grid">
<!-- PROFILE -->
<div class="card">
<h3>π€ Profile</h3>
<img id="avatar">
<p id="name"></p>
<p id="stats"></p>
</div>
<!-- SCORE -->
<div class="card">
<h3>π Score</h3>
<div id="score"></div>
<div class="bar"><div id="progress"></div></div>
</div>
<!-- ROAST -->
<div class="card">
<h3>π₯ Roast</h3>
<div id="roast"></div>
</div>
<!-- SUGGESTIONS -->
<div class="card">
<h3>π‘ Improve</h3>
<ul id="suggestions"></ul>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>