-
Notifications
You must be signed in to change notification settings - Fork 0
/
gitrepo.html
90 lines (71 loc) · 2.81 KB
/
gitrepo.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html>
<head>
<!-- Site Title & Favicon-->
<title>Repo | Git Card</title>
<link rel="shortcut icon" type="image/svg" href="./images/github.ico" />
<!-- Meta Viewport Set -->
<meta charset="UTF-8" />
<meta http-equiv="Content-Type" content="text/html" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Meta Author, Description, Keywords -->
<meta name="author" content="Niladri Mondal" />
<meta name="description" content="Welcome to Git Card" />
<meta name="keywords" content="Developer, Github, Card, Git, Repository" />
<!-- Icons -->
<link rel="stylesheet" href="https://unpkg.com/[email protected]/css/boxicons.min.css" />
<!-- Tab Color -->
<meta name="theme-color" content="#22272e" />
<meta name="msapplication-navbutton-color" content="#22272e" />
<!-- CSS -->
<link rel="stylesheet" href="./css/bootstrap.min.css" />
<link rel="stylesheet" href="./css/index.css" />
<link rel="stylesheet" href="./css/gitrepo.css" />
<!-- JS -->
<script defer src="./js/jquery-3.6.0.min.js"></script>
<script defer src="./js/sweetalert.min.js"></script>
<script defer src="./js/index.js"></script>
<script defer src="./js/gitrepo.js"></script>
</head>
<body>
<!-- Header Start -->
<header>
<a href="https://gitog.vercel.app/">
<img src="./images/github.ico" alt="Git Card Logo" />
<h4>Git Card</h4>
</a>
<span id="kebab_menu" class="bx bx-dots-vertical-rounded"></span>
<nav>
<a class="nav-link" href="./gituser.html">Git User</a>
<a class="nav-link" href="./gitrepo.html">Git Repo</a>
</nav>
</header>
<!-- Header End -->
<!-- Git Repo Banner Start -->
<section id="banner_gitrepo">
<div class="banner_gitrepo row">
<div class="search_repo col-lg-4">
<h2>Git Repository</h2>
<form>
<div class="my-4">
<label for="user">User Name</label>
<input type="text" id="user" name="User" class="form-control" />
</div>
<div class="my-4">
<label for="repo">Repo Name</label>
<input type="text" id="repo" name="Repo" class="form-control" />
</div>
<button type="submit" class="btn btn-get">Get Repo</button>
</form>
</div>
<div id="git_repo" class="col-lg-8">
<div class="git_skeleton">
<object data="./images/github.svg"></object>
<h2>Github Open Graph</h2>
</div>
</div>
</div>
</section>
<!-- Git Repo Banner End -->
</body>
</html>