-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjsprojects.html
More file actions
85 lines (64 loc) · 2.51 KB
/
Copy pathjsprojects.html
File metadata and controls
85 lines (64 loc) · 2.51 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>JS Projects | Suryank Batham</title>
<link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css" />
<link rel="stylesheet" href="jsproject.css">
</head>
<body>
<div class="navmain">
<div class="navbar">
<a href="index.html">HOME</a>
<a href="clones.html">CLONES</a>
<a href="jsprojects.html">JSPROJECTS</a>
<a href="#">MYBEST</a>
<a href="contactme.html" class="contact-button">CONTACT ME</a>
</div>
</div>
<h1 class="section-title">My <span id="jssty">JavaScript </span>Projects</h1>
<div class="projects-container">
<div class="project-card">
<h3>Gittie</h3>
<p>Enter a username to fetch and display GitHub repos using GitHub API + JS fetch.</p>
<a href="gittie.html">Try Gittie →</a>
</div>
<div class="project-card">
<h3>BMI Calculator</h3>
<p>Calculates BMI from user input and gives weight classification based on BMI range.</p>
<a href="bmi.html">Try BMI Calculator →</a>
</div>
<div class="project-card">
<h3>Color Changer</h3>
<p>Click a button to randomly change the background color — fun and beginner-friendly.</p>
<a href="colorchanger.html">Try Color Changer →</a>
</div>
<div class="project-card">
<h3>Number Guesser Game</h3>
<p>A simple number guessing game with feedback, win/loss logic, and JavaScript loops.</p>
<a href="numberguesser.html">Play Game →</a>
</div>
<div class="project-card">
<h3>To-Do List App</h3>
<p>A classic to-do list that lets you add, complete, and clear tasks with local storage support.</p>
<a href="todo.html">Open To-Do App →</a>
</div>
</div>
<button class="secondary-btn">
More projects
</button>
</div>
<footer class="footer">
<div class="social-footer">
<a href="#"><i class="fab fa-github"></i></a>
<a href="#"><i class="fab fa-linkedin"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fas fa-envelope"></i></a>
</div>
<p class="footer-text">© 2025 Suryank Batham. All rights reserved.</p>
</footer>
<script src="numberguesser.js"></script>
</body>
</html>