-
Notifications
You must be signed in to change notification settings - Fork 11
/
index.html
55 lines (51 loc) · 2.03 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
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GithubSquare</title>
<link
href="https://fonts.googleapis.com/css2?family=Jost:wght@300;400;600&family=Roboto:wght@400;500;700&display=swap"
rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&display=swap" rel="stylesheet"
rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Catamaran:wght@700;900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<div class="homeContainer container">
<ul class="nav home-nav">
<li>
<a class='nav-btn' href="/index.html">Home</a>
</li>
<li>
<a class='nav-btn' href="/battle.html">Battle</a>
</li>
<li>
<a class='nav-btn' href="/popular.html">Popular</a>
</li>
<li>
<a class='nav-btn' href="/search.html">Search</a>
</li>
<li>
<a class='nav-btn' href="/trending.html">Trending</a>
</li>
</ul>
<div class="main">
<div class='main-content'>
<img class='circle' src=' ./img/ovel1.svg'>
<div class="logo-container">
<img class='github-logo' src="./img/githubnew.svg" alt="">
<!-- <img src='./ovel2.svg'> -->
</div>
<div class="tagline-main">GitSquare</div>
<div class="tagline-sub">A Github Explorer</div>
<div class="about">A Vanilla JS App that let's you explore trending repositores , developers , your
favourite repositories and face off Github Profiles of your choice.
</div>
<a href='./trending.html'><button class="brk-btn">Get Started</button></a>
</div>
</div>
</div>
</body>
</html>