-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (61 loc) · 2.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Frontendmentor Solutions | Spudoodle</title>
<link rel="stylesheet" href="./misc/style.css" />
<style></style>
</head>
<body>
<div class="container">
<header>
<h1>Frontend Mentor Solutions</h1>
<p>
Welcome to my repository for Frontend Mentor solutions! My solutions
for the various Frontend Mentor problems are available here. Please
browse and let me know what you think.
</p>
<p>
If you find this useful, star the
<a href="https://github.com/spudoodle/frontendmentor" target="_blank"
>repository</a
>
❤️
</p>
</header>
<div class="filter-section">
<input
type="text"
name="saerch"
id="search"
placeholder="Enter the project name"
/>
<div class="label-selector">
<button class="label-selector-btn">ALL</button>
<div class="label-selector-modal">
<button class="label-all label-btn" name="all">ALL</button>
<button class="label-newbie label-btn" name="newbie">NEWBIE</button>
<button class="label-junior label-btn" name="junior">JUNIOR</button>
<button class="label-intermediate label-btn" name="intermediate">
INTERMEDIATE
</button>
<button class="label-advanced label-btn" name="advanced">
ADVANCED
</button>
</div>
</div>
</div>
<section id="project-container" class="project-container"></section>
<p class="coming-soon">More coming soon 🚀</p>
<footer>
<div>©2025. ALL RIGHTS RESERVED.</div>
<div>
DEVELOPED BY
<a href="https://spudoodle.vercel.app" target="_blank">ACHAL</a>.
</div>
</footer>
</div>
</body>
<script src="./misc/script.js"></script>
</html>