-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (52 loc) · 2.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Educational Repository</title>
<link rel="stylesheet" href="master-styles.css">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Lobster&display=swap" rel="stylesheet">
<link rel="icon" href="favicon.ico" type="image/x-icon">
</head>
<body>
<header>
<h1>Educational Repository</h1>
<p>Explore the chapters and learn various programming languages, tools, and APIs.</p>
</header>
<nav>
<a href="#home" class="active">Home</a>
<a href="Languages/languages-all.html">Languages</a>
<a href="pages-html/tools-dropdown.html">Tools</a>
<a href="pages-html/apis-dropdown.html">APIs</a>
<a href="pages-html/main-technologies-used.html">Main Technologies Used</a>
<a href="pages-html/powered-by.html">Powered By</a>
</nav>
<main id="home" class="container" role="main">
<section class="section">
<h2>Landing Page</h2>
<p>Welcome to the Educational Repository. Explore the chapters and learn various programming languages, tools, and APIs.</p>
<div class="grid">
<a href="Languages/languages-all.html" class="section-link">
<h3>Explore Languages</h3>
</a>
<a href="pages-html/tools-dropdown.html" class="section-link">
<h3>Explore Tools</h3>
</a>
<a href="pages-html/apis-dropdown.html" class="section-link">
<h3>Explore APIs</h3>
</a>
<a href="pages-html/main-technologies-used.html" class="section-link">
<h3>Explore Main Technologies Used</h3>
</a>
<a href="pages-html/powered-by.html" class="section-link">
<h3>Explore Powered By</h3>
</a>
</div>
</section>
</main>
<footer>
<p>© 2024 Educational Repository. All rights reserved.</p>
</footer>
<script src="script.js"></script>
</body>
</html>