Skip to content

Commit 5b53984

Browse files
committed
update index.html
1 parent acdab80 commit 5b53984

File tree

1 file changed

+43
-30
lines changed

1 file changed

+43
-30
lines changed

Website/index.html

Lines changed: 43 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
<title>Machine Learning Repositories</title>
77
<link rel="stylesheet" href="styles.css">
88
<link rel="icon" href="logo.png" type="image/png"> <!-- Added favicon -->
9+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
910
</head>
1011
<body>
1112
<header>
@@ -31,8 +32,14 @@
3132

3233
<main>
3334
<section class="welcome-section">
34-
<h2>Welcome to the Machine Learning Repositories</h2>
35-
<p>Explore a curated collection of diverse machine learning repositories available on GitHub, presented by the RecodeHive community.</p>
35+
<div class="container">
36+
<div>
37+
<div>
38+
<h1 class="welcome-title">Welcome to <span class="highlight">Machine Learning Repositories</span></h1>
39+
<p class="welcome-description">Explore a curated collection of diverse machine learning repositories available on GitHub, presented by the <span> <a href="https://github.com/recodehive"> RecodeHive </a></span>community.</p>
40+
</div>
41+
</div>
42+
</div>
3643
</section>
3744

3845
<!-- Toggle button for Repository Statistics -->
@@ -41,35 +48,41 @@ <h2>Welcome to the Machine Learning Repositories</h2>
4148
</section>
4249

4350
<!-- Statistics Cards -->
44-
<section id="statistics-cards">
45-
<h2>Repository Statistics</h2>
46-
<div class="stats-grid">
47-
<div class="stat-card">
48-
<h3>Total Stars</h3>
49-
<p id="total-stars">Loading...</p>
50-
</div>
51-
<div class="stat-card">
52-
<h3>Total Forks</h3>
53-
<p id="total-forks">Loading...</p>
54-
</div>
55-
<div class="stat-card">
56-
<h3>Open Issues</h3>
57-
<p id="open-issues">Loading...</p>
58-
</div>
59-
<div class="stat-card">
60-
<h3>License</h3>
61-
<p id="license">Loading...</p>
62-
</div>
63-
<div class="stat-card">
64-
<h3>Repository Size</h3>
65-
<p id="repo-size">Loading...</p>
66-
</div>
67-
<div class="stat-card">
68-
<h3>Most Used Language</h3>
69-
<p id="most-used-language">Loading...</p>
70-
</div>
51+
<section id="statistics-cards">
52+
<h2>Repository Statistics</h2>
53+
<div class="stats-grid">
54+
<div class="stat-card">
55+
<i class="fas fa-star stat-icon"></i>
56+
<h3>Total Stars</h3>
57+
<p id="total-stars">Loading...</p>
7158
</div>
72-
</section>
59+
<div class="stat-card">
60+
<i class="fas fa-code-branch stat-icon"></i>
61+
<h3>Total Forks</h3>
62+
<p id="total-forks">Loading...</p>
63+
</div>
64+
<div class="stat-card">
65+
<i class="fas fa-exclamation-circle stat-icon"></i>
66+
<h3>Open Issues</h3>
67+
<p id="open-issues">Loading...</p>
68+
</div>
69+
<div class="stat-card">
70+
<i class="fas fa-balance-scale stat-icon"></i>
71+
<h3>License</h3>
72+
<p id="license">Loading...</p>
73+
</div>
74+
<div class="stat-card">
75+
<i class="fas fa-database stat-icon"></i>
76+
<h3>Repository Size</h3>
77+
<p id="repo-size">Loading...</p>
78+
</div>
79+
<div class="stat-card">
80+
<i class="fas fa-code stat-icon"></i>
81+
<h3>Most Used Language</h3>
82+
<p id="most-used-language">Loading...</p>
83+
</div>
84+
</div>
85+
</section>
7386

7487
<!-- Languages -->
7588
<section id="languages">

0 commit comments

Comments
 (0)