-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
98 lines (89 loc) · 5.33 KB
/
index.html
File metadata and controls
98 lines (89 loc) · 5.33 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
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Vojislav Beli">
<meta name="keywords"
content="JavaScript projects, mini JavaScript games, interactive web tools, vanilla JS projects, coding practice, free JavaScript projects, web development, HTML CSS JavaScript, learn JavaScript, fun coding projects">
<meta name="description"
content="Free mini JavaScript projects and games collection. Play interactive tools like Dice Roller, Tic Tac Toe, Memory, Stopwatch, Calculator. Learn JavaScript with fun projects from Gloomcaller's GitHub. No signups required.">
<title>Mini JS Projects | Interactive Games & Tools Collection</title>
<meta property="og:title" content="Mini JS Projects - Interactive Games & Tools">
<meta property="og:description"
content="Play free interactive JavaScript games like Dice Roller, Tic Tac Toe, Memory, and more. No installs needed.">
<meta property="og:image" content="./assets/icons/favicon.png">
<meta property="og:url" content="https://gloomcaller.github.io/Mini-JS-Projects/">
<meta name="twitter:card" content="summary">
<meta name="theme-color" content="#2c3e50">
<link rel="icon" type="image/png" href="./assets/icons/favicon.png">
<link rel="apple-touch-icon" href="./assets/icons/favicon.png">
<link rel="stylesheet" href="styles.css">
<link rel="sitemap" type="application/xml" href="sitemap.xml">
</head>
<body>
<div class="app-container">
<header class="header">
<a href="https://github.com/Gloomcaller" class="icon-btn" target="_blank" aria-label="Visit GitHub Profile">
<img src="./assets/icons/github.png" alt="GitHub" class="icon-img">
<span class="tooltip">GitHub</span>
</a>
<h1>Mini JS Projects</h1>
<a href="index.html" class="icon-btn" aria-label="Home Page">
<img src="./assets/icons/home.png" alt="Home" class="icon-img">
<span class="tooltip">Home</span>
</a>
</header>
<div class="main-layout">
<aside class="sidebar left-sidebar">
<div class="preview-container">
<img src="./assets/preview/temp.png" alt="Project preview" id="project-preview-img">
</div>
</aside>
<main class="main-content">
<div class="content-header">
<div class="search-section">
<input type="text" id="search-input" placeholder="Search projects..." class="search-bar">
<span class="project-count" id="project-count">17 projects</span>
</div>
</div>
<div class="project-grid" id="project-grid"></div>
</main>
<aside class="sidebar right-sidebar">
<div class="description-container" id="project-description">
<p>Welcome to my interactive playground of <strong>mini JavaScript projects</strong>. This growing
<strong>collection</strong> features small, fun, and practical <strong>web applications</strong>
built with plain HTML, CSS, and vanilla JS. Each <strong>project</strong> is self-contained,
open-source on <strong>GitHub</strong>, and runs directly in your browser.
<strong>Select</strong> any project to <strong>see</strong> previews and
<strong>details</strong>. These <strong>JavaScript projects</strong> are perfect for learning,
practice, or entertainment — no frameworks, installations, or sign-ups required.
</p>
</div>
</aside>
</div>
<footer class="footer">
<p>Created by <strong>© Vojislav Beli</strong> | <span id="year"></span> Mini JS Projects</p>
<div class="share-container">
<span>Share:</span>
<a href="https://twitter.com/intent/tweet?text=Check%20out%20this%20collection%20of%20mini%20JavaScript%20projects!&url=https://gloomcaller.github.io/Mini-JS-Projects/"
target="_blank" aria-label="Share on X">
<img src="./assets/icons/x.png" alt="X" class="share-icon">
</a>
<a href="https://www.instagram.com/Gloomcaller/" target="_blank" aria-label="Share on Instagram">
<img src="./assets/icons/instagram.png" alt="Instagram" class="share-icon">
</a>
<a href="https://www.linkedin.com/sharing/share-offsite/?url=https://gloomcaller.github.io/Mini-JS-Projects/"
target="_blank" aria-label="Share on LinkedIn">
<img src="./assets/icons/linkedin.png" alt="LinkedIn" class="share-icon">
</a>
<a href="https://wa.me/?text=Check%20out%20these%20JavaScript%20projects!%20https://gloomcaller.github.io/Mini-JS-Projects/"
target="_blank" aria-label="Share on WhatsApp">
<img src="./assets/icons/whatsapp.png" alt="WhatsApp" class="share-icon">
</a>
</div>
</footer>
</div>
<script src="script.js"></script>
</body>
</html>