-
Notifications
You must be signed in to change notification settings - Fork 98
/
Copy pathindex.html
32 lines (32 loc) · 1.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Programming Languages - Hello World</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<h1>Hello World <span class="documentation">Documentation</span></h1>
<div class="description">
A collection of "Hello World" syntax examples in different programming languages.
<br>
<a href="https://github.com/agnilondapakou/helloWorld" class="source-link" target="_blank">Source: GitHub Repository</a>
</div>
<div class="search-container">
<input type="text" id="searchInput" placeholder="Search for a programming language...">
</div>
<div class="alphabet-filter">
<!-- Letters will be injected via JavaScript -->
</div>
<div class="languages-grid" id="languagesGrid">
<!-- Language cards will be injected via JavaScript -->
</div>
<div id="errorMessage" class="error-message" style="display: none;">
Unable to load languages. Please try again later.
</div>
</div>
<script src="script.js"></script>
</body>
</html>