-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAbout.html
209 lines (202 loc) · 10.2 KB
/
About.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
<!--
*********************************************************************************************
* File: about.html
* Author: Madhurima Rawat
* Date: July 29, 2024
* Description: This HTML file creates a webpage called 'GitHub Toolkit' which features a
* navigation bar and multiple cards describing various GitHub features such as
* repositories, issues, pull requests, etc. The page is styled using Bootstrap
* for responsiveness and custom CSS for additional styling.
* Version: 1.0
* GitHub Repository: https://github.com/madhurimarawat/GitHub-Repository-Lister
* Issues/Bugs: For any issues or bugs, please visit the GitHub repository issues section.
* Comments: This HTML file defines the structure of the GitHub Toolkit webpage, including
* navigation and card components with images and descriptions of GitHub features.
* Dependencies:
* - Bootstrap 5.3.0 for CSS and JS
* - Popper.js 2.11.6 for Bootstrap
* - Custom CSS file (css/about.css) for additional styles
*********************************************************************************************
-->
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Metadata and character encoding -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GitHub Toolkit</title>
<!-- Bootstrap CSS for responsive design and styling -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS for additional styling -->
<link href="css/about.css" rel="stylesheet">
</head>
<body>
<!-- Navigation Bar -->
<nav class="navbar navbar-expand-lg bg-primary">
<!-- GitHub Logo in the navbar -->
<a>
<img src="GitHub Logo.png" height="50" width="70">
</a>
<div class="container-fluid">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<!-- Navigation links -->
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="About.html">GitHub Toolkit</a>
</li>
</ul>
<!-- Button linking to GitHub repository -->
<form class="form-inline my-2 my-lg-1">
<a href="https://github.com/madhurimarawat/GitHub-Repository-Lister">
<button type="button" class="btn btn-dark">GitHub</button>
</a>
</form>
</div>
</nav>
<br>
<!-- Page heading -->
<h3>GitHub Toolkit</h3>
<br>
<div class="container">
<!-- Cards layout for different GitHub features -->
<div class="row">
<!-- Card for GitHub -->
<div class="col-md-4">
<div class="card mb-4 card-github">
<div class="card-body">
<h5 class="card-title">GitHub</h5>
<br>
<img src="GitHub Logo.png" class="card-img-top" height="140" alt="GitHub Image">
<br><br>
<p class="card-text">GitHub is a web-based platform for version control using Git. It
facilitates collaborative software development and project management.</p>
</div>
</div>
</div>
<!-- Card for Profile -->
<div class="col-md-4">
<div class="card mb-4 card-profile">
<div class="card-body">
<h5 class="card-title">Profile</h5>
<br>
<img src="https://miro.medium.com/v2/resize:fit:564/1*Erk4NawQOHkf4wSN7JmB_A.jpeg" height="140"
class="card-img-top" alt="Profile Image">
<br><br>
<p class="card-text">A GitHub profile displays a user's repositories, contributions, and
activity. It serves as a resume for showcasing skills and projects.</p>
</div>
</div>
</div>
<!-- Card for Followers -->
<div class="col-md-4">
<div class="card mb-4 card-followers">
<div class="card-body">
<h5 class="card-title">Followers</h5>
<br>
<img src="https://static.vecteezy.com/system/resources/previews/000/362/906/original/vector-a-leader-giving-inspiration-and-motivation-to-his-followers.jpg"
height="140" class="card-img-top" alt="Followers Image">
<br><br>
<p class="card-text">Followers on GitHub are users who follow another user to stay updated on
their activities, new repositories, projects, and contributions.</p>
</div>
</div>
</div>
</div>
<!-- More cards for other GitHub features -->
<div class="row mt-4">
<!-- Card for Repository -->
<div class="col-md-4">
<div class="card mb-4 card-repository">
<div class="card-body">
<h5 class="card-title">Repository</h5>
<br>
<img src="https://clipart-library.com/data_images/308974.jpg" height="140" class="card-img-top"
alt="Repository Image">
<br><br>
<p class="card-text">A GitHub repository is a storage space for version-controlled files and
project resources. It supports collaborative development and sharing.</p>
</div>
</div>
</div>
<!-- Card for Topics -->
<div class="col-md-4">
<div class="card mb-4 card-topics">
<div class="card-body">
<h5 class="card-title">Topics</h5>
<br>
<img src="https://larpbook.com/wp-content/uploads/2016/01/fotolia_80733213_subscription_monthly_m-e1451762140487.jpg"
class="card-img-top" alt="Topics Image">
<br><br>
<p class="card-text">GitHub Topics categorize repositories and are also used for search. They
enable users to explore and discover projects based on specific themes or interests.</p>
</div>
</div>
</div>
<!-- Card for Stars -->
<div class="col-md-4">
<div class="card mb-4 card-stars">
<div class="card-body">
<h5 class="card-title">Stars</h5>
<br>
<img src="https://tse2.mm.bing.net/th?id=OIP.ZLP8TyamI4AVVkzrUtTAKAHaHe&pid=15.1" height="140"
class="card-img-top" alt="Stars Image">
<br><br>
<p class="card-text">Stars on GitHub let users bookmark repositories they find interesting or
useful, showing appreciation for a project's work and contributions.</p>
</div>
</div>
</div>
</div>
<!-- Additional cards -->
<div class="row mt-4">
<!-- Card for License -->
<div class="col-md-4">
<div class="card mb-4 card-license">
<div class="card-body">
<h5 class="card-title">License</h5>
<br>
<img src="https://th.bing.com/th/id/OIP.u66OX6JtGlPpkKSMvmk1LQHaHa?rs=1&pid=ImgDetMain"
height="140" class="card-img-top" alt="License Image">
<br><br>
<p class="card-text">A GitHub repository license specifies the terms under which the project's
code can be used, modified, and shared, ensuring clear rights and obligations.</p>
</div>
</div>
</div>
<!-- Card for Issues -->
<div class="col-md-4">
<div class="card mb-4 card-issues">
<div class="card-body">
<h5 class="card-title">Issues</h5>
<br>
<img src="http://www.clker.com/cliparts/z/k/H/x/m/c/topic-list-md.png" height="140"
class="card-img-top" alt="Issues Image">
<br><br>
<p class="card-text">Issues on GitHub track bugs, enhancements, and tasks. They facilitate
collaboration by allowing users to discuss and manage the development process.</p>
</div>
</div>
</div>
<!-- Card for Pull Requests -->
<div class="col-md-4">
<div class="card mb-4 card-pull-requests">
<div class="card-body">
<h5 class="card-title">Pull Requests</h5>
<br>
<img src="https://logodix.com/logo/2202291.jpg" height="140" class="card-img-top"
alt="Pull Requests Image">
<br><br>
<p class="card-text">Pull requests on GitHub let users propose changes to a repository. They
enable code review and discussion before changes are merged into the main project.</p>
</div>
</div>
</div>
</div>
</div>
<!-- Bootstrap JS and dependencies -->
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.6/dist/umd/popper.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.min.js"></script>
</body>
</html>