-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
48 lines (46 loc) · 2 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
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Your Github Score</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato:100&effect=neon">
<link rel="stylesheet" href="./css/nav.css">
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="./css/cards.css">
<link rel="stylesheet" href="./css/compare.css">
</head>
<body>
<nav class="navbar">
<a href="javascript:homePage()" class="brand">GITMASH</a>
</nav>
<div id='palette' class="theme">
<div class="drop-color"><i class="fas fa-palette"></i></div>
<div onclick="changeTheme('#0FF')" class="color blue"></div>
<div onclick="changeTheme('#FE0')" class="color yellow"></div>
<div onclick="changeTheme('#0F0')" class="color green"></div>
<div onclick="changeTheme('#F0F')" class="color pink"></div>
</div>
<div class="container">
<div class="top-section">
<h1 class="heading">Github Scorecard Generator</h1>
<h2 class="sub-heading">How strong is your github profile !!!</h2>
</div>
<div class="cards">
<div class="card">
<h2 class="card-title">Get Your Score</h2>
<img src="./img/git-white.png" alt="Git" class="card-img">
<button onclick="checkPage()" class="btn-card">Check</button>
</div>
<div class="card">
<h2 class="card-title">Compare Your Score</h2>
<img src="./img/github-white.png" alt="GitHub" class="card-img">
<button onclick="comparePage()" class="btn-card">Compare</button>
</div>
</div>
</div>
<script src="https://kit.fontawesome.com/82262f4dc4.js" crossorigin="anonymous"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="./js/index.js"></script>
</body>
</html>