-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
51 lines (51 loc) · 1.71 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>OpenTekHub</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>OpenTekHub</h1>
<nav>
<ul>
<li><a href="#overview">Overview</a></li>
<li><a href="#repositories">Repositories</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#packages">Packages</a></li>
<li><a href="#people">People</a></li>
</ul>
</nav>
</header>
<main>
<section id="overview">
<h2>Overview</h2>
<p>Welcome to OpenTekHub, an organization focused on open-source projects and community collaboration.</p>
</section>
<section id="repositories">
<h2>Repositories</h2>
<ul>
<li><a href="https://github.com/OpenTekHub/djangotemplates">djangotemplates</a></li>
<li><a href="https://github.com/OpenTekHub/opentekhub.github.io">opentekhub.github.io</a></li>
</ul>
</section>
<section id="projects">
<h2>Projects</h2>
<p>Explore our ongoing projects and initiatives.</p>
</section>
<section id="packages">
<h2>Packages</h2>
<p>Discover the packages we offer and contribute to their development.</p>
</section>
<section id="people">
<h2>People</h2>
<p>Meet the team behind OpenTekHub.</p>
</section>
</main>
<footer>
<p>© 2024 OpenTekHub. All rights reserved.</p>
</footer>
</body>
</html>