-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
67 lines (62 loc) · 3.38 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
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html>
<head>
<title>Get 100 repos</title>
<!-- Link bootstrap used in design -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<!-- ====================================================================== -->
<!-- index css for task -->
<link rel="stylesheet" href="../css/index.css">
</head>
<body class="bg-info">
<!-- header -->
<div class="container-fluid bg-dark">
<h3 class="text-center p-3 text-white font-auto">Welcome</h3>
</div>
<!-- ====================================================================== -->
<!-- Title -->
<div class="container rounded bg-dark pt-2 pb-2 text-center">
<h4 class="text-white mb-5 pt-2 font-auto text-capitalize">list the languages used by the 100 trending public
repos </h4>
</div>
<!-- ====================================================================== -->
<!-- List of Language -->
<div class="container rounded bg-dark pt-2 pb-2 text-center list-language">
</div>
<!-- ====================================================================== -->
<div class="clearfix"></div>
<!-- ====================================================================== -->
<!-- Click on This Button to display languages -->
<div class="container rounded bg-dark pt-2 pb-2 text-center ">
<button class="btn btn-primary text-capitalize button">click to list Languages </button>
</div>
<!-- ====================================================================== -->
<div class="clearfix"></div>
<hr>
<!-- ====================================================================== -->
<!-- To Display Title -->
<div class="container rounded bg-dark text-center pt-2 pb-2 text-white font-auto ">
<h3 class="font-atuo">Language And Repos</h3>
</div>
<!-- ====================================================================== -->
<!-- Display Language , Number and Repo -->
<div class="container rounded bg-dark pt-2 pb-2 text-white font-auto language-and-number-of-repo">
</div>
<!-- ====================================================================== -->
<!-- Script for jquery and bootstrap to help me in design -->
<script src="https://code.jquery.com/jquery-3.5.1.js"
integrity="sha256-QWo7LDvxbWT2tbbQ97B53yJnYU3WhH/C8ycbRAkjPDc=" crossorigin="anonymous"></script>
<!-- ====================================================================== -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"
integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1"
crossorigin="anonymous"></script>
<!-- ====================================================================== -->
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"
integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM"
crossorigin="anonymous"></script>
<!-- ====================================================================== -->
<!-- index js for get repo and languages -->
<script src="../js/index.js"></script>
</body>
</html>