-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
97 lines (96 loc) · 4.16 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Utility Hub</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
</head>
<body>
<header>
<h1>Utility Hub</h1>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#tools">Tools</a></li>
<li><a href="#games">Games</a></li>
</ul>
</nav>
</header>
<section id="home">
<div class="intro">
<h2>Welcome to the Utility Hub!</h2>
<p>Discover a collection of innovative tools and captivating games.</p>
</div>
</section>
<section id="tools">
<h2>VIT Essentials</h2>
<div class="project-grid">
<div class="project-card">
<h3>Mess Menu</h3>
<p>Showcase of timetable for hostels mess menu.</p>
<a href="vitbmess/index.html" class="explore-btn">Explore</a>
<p class="made-by">Made by: <a href="https://github.com/hgjajoo" target="_blank">hgjajoo</a></p>
</div>
</div>
</section>
<section id="tools">
<h2>Utility Tools</h2>
<div class="project-grid">
<div class="project-card">
<h3>Countdown App</h3>
<p>A simple app to create countdowns</p>
<a href="countdownApp/index.html" class="explore-btn">Explore</a>
<p class="made-by">Made by: <a href="https://github.com/hgjajoo" target="_blank">hgjajoo</a></p>
</div>
<div class="project-card">
<h3>Meme Generator</h3>
<p>Create funny memes.</p>
<a href="memeGen/index.html" class="explore-btn">Explore</a>
<p class="made-by">Made by: <a href="https://github.com/hgjajoo" target="_blank">hgjajoo</a></p>
</div>
<div class="project-card">
<h3>Password Generator</h3>
<p>A simple app to create random passwords of different character length, with caps on/off, special characters and numbers.</p>
<a href="passwordGen/index.html" class="explore-btn">Explore</a>
<p class="made-by">Made by: <a href="https://github.com/hgjajoo" target="_blank">hgjajoo</a></p>
</div>
<div class="project-card">
<h3>Random Color Generator</h3>
<p>A simple app that generates random colors!</p>
<a href="randColorGen/index.html" class="explore-btn">Explore</a>
<p class="made-by">Made by: <a href="https://github.com/hgjajoo" target="_blank">hgjajoo</a></p>
</div>
<div class="project-card">
<h3>Random Number Generator</h3>
<p>A simple app that generates random numbers!</p>
<a href="randNumGen/index.html" class="explore-btn">Explore</a>
<p class="made-by">Made by: <a href="https://github.com/hgjajoo" target="_blank">hgjajoo</a></p>
</div>
</div>
</section>
<section id="games">
<h2>Games</h2>
<div class="project-grid">
<div class="project-card">
<h3>Chess</h3>
<p>The old school chess.</p>
<a href="chessGame/index.html" class="explore-btn">Explore</a>
<p class="made-by">Made by: <a href="https://github.com/theduce" target="_blank">Duce</a></p>
</div>
<div class="project-card">
<h3>2048</h3>
<p>The classic 2048, as we all know it!</p>
<a href="chessGame/index.html" class="explore-btn">Explore</a>
<p class="made-by">Made by: <a href="https://github.com/theduce" target="_blank">Duce</a></p>
</div>
</div>
</section>
<footer>
<div class="github-link">
<a href="https://github.com/hgjajoo" target="_blank"><i class="fab fa-github"></i> View on GitHub</a>
</div>
</footer>
</body>
</html>