-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
80 lines (80 loc) · 3.82 KB
/
index.html
File metadata and controls
80 lines (80 loc) · 3.82 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The FOSS Place</title>
<link rel="stylesheet" href="styles.css">
<link rel="icon" href="logo.jpg">
</head>
<body>
<header>
<h1>The FOSS Place</h1>
</header>
<nav class="navbar">
<ul class="nav-menu">
<li><a href="Media/index.html" class="nav-link">Media</a></li>
<li><a href="Productivity/index.html" class="nav-link">Productivity</a></li>
<li><a href="Dev/index.html" class="nav-link">Development</a></li>
<li><a href="Utilities/index.html" class="nav-link">Utilities</a></li>
<li><a href="Docker/index.html" class="nav-link">Docker</a></li>
</ul>
</nav>
<main>
<div class="app-container">
<div class="app-card">
<img src="https://cdn.brandfetch.io/id3mr1jHbm/theme/dark/logo.svg?c=1bxid64Mup7aczewSAYMX" alt="VLC Icon">
<h2>VLC</h2>
<p>A great app for media playback.</p>
<a href="Media/vlc.html"><button>View</button></a>
</div>
<div class="app-card">
<img src="https://cdn.brandfetch.io/idu_b8goqH/w/400/h/400/theme/dark/icon.jpeg?c=1bxid64Mup7aczewSAYMX&t=1764380173570" alt="Jellyfin Icon">
<h2>Jellyfin</h2>
<p>Enjoy entertainment on the go.</p>
<a href="Media/jellyfin.html"><button>View</button></a>
</div>
<div class="app-card">
<img src="https://cdn.brandfetch.io/idJCK2ze6E/theme/dark/logo.svg?c=1bxid64Mup7aczewSAYMX&t=1765417763831" alt="GIMP Icon">
<h2>GIMP</h2>
<p>The FOSS photo editor.</p>
<a href="Media/gimp.html"><button>View</button></a>
</div>
<div class="app-card">
<img src="https://cdn.brandfetch.io/idu2jw0g2Q/w/400/h/400/theme/dark/icon.jpeg?c=1bxid64Mup7aczewSAYMX&t=1768215690932" alt="LibreOffice Icon">
<h2>LibreOffice</h2>
<p>The productivity suite.</p>
<a href="Productivity/libreoffice.html"><button>View</button></a>
</div>
<div class="app-card">
<img src="https://vscodium.com/img/codium_cnl.svg" alt="VSCodium Icon">
<h2>VSCodium</h2>
<p>The IDE without the tracking.</p>
<a href="Dev/vsfoss.html"><button>View</button></a>
</div>
<div class="app-card">
<img src="https://cdn.brandfetch.io/idwJsBsfDT/w/512/h/512/theme/dark/logo.png?c=1bxid64Mup7aczewSAYMX&t=1771260064842" alt="OBS Studio Icon">
<h2>OBS Studio</h2>
<p>Screen recording and streaming.</p>
<a href="Media/obs.html"><button>View</button></a>
</div>
<div class="app-card">
<img src="https://cdn.brandfetch.io/idd9R_pTfB/w/400/h/400/theme/dark/icon.jpeg?c=1bxid64Mup7aczewSAYMX&t=1769539064866" alt="Shotcut Icon">
<h2>Shotcut</h2>
<p>Free, open-source video editor.</p>
<a href="Media/shotcut.html"><button>View</button></a>
</div>
<div class="app-card">
<img src="https://cdn.brandfetch.io/idILYZGgSd/w/2048/h/2048/theme/dark/logo.png?c=1bxid64Mup7aczewSAYMX&t=1687242662517" alt="Thunderbird Icon">
<h2>Thunderbird</h2>
<p>The email client that respects your privacy.</p>
<a href="Productivity/thunderbird.html"><button>View</button></a>
</div>
</div>
</main>
<footer>
<p>© 2026 The FOSS Place. All rights reserved.</p>
<a href="disclaimer.html">Disclaimer</a>
</footer>
</body>
</html>