Merge pull request 'Created the first draft of the FOSS Website' (#1) from sageTheDm/foss_alternatives:main into main
Reviewed-on: https://codeberg.org/Patrick_Pluto/foss_alternatives/pulls/1
This commit is contained in:
commit
c722d84976
43 changed files with 2555 additions and 0 deletions
55
FOOS_ALT_WEBSITE/games.html
Normal file
55
FOOS_ALT_WEBSITE/games.html
Normal file
|
@ -0,0 +1,55 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>FOSS Alternatives</title>
|
||||
<link rel="stylesheet" href="styles.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="header-content">
|
||||
<div class="project-name"><a href="index.html">FOSS alternative</a></div>
|
||||
<button class="burger-menu" onclick="toggleMenu()">☰</button>
|
||||
<ul class="menu">
|
||||
<li><a href="games.html">Games</a></li>
|
||||
<li><a href="general.html">General</a></li>
|
||||
<li><a href="tools.html">Tools</a></li>
|
||||
<li><a href="media.html">Multimedia</a></li>
|
||||
<li><a href="os.html">OS</a></li>
|
||||
<li><a href="social-media.html">Social media</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</header>
|
||||
<article>
|
||||
<nav>
|
||||
<ul class="folder-list">
|
||||
<li class="folder-list-item">
|
||||
<a class="folder-link" href="games/fps.html">FPS</a>
|
||||
</li>
|
||||
<li class="folder-list-item">
|
||||
<a class="folder-link" href="games/general.html">General</a>
|
||||
</li>
|
||||
<li class="folder-list-item">
|
||||
<a class="folder-link" href="games/platformer.html">Platformer</a>
|
||||
</li>
|
||||
<li class="folder-list-item">
|
||||
<a class="folder-link" href="games/sandbox.html">Sandbox</a>
|
||||
</li>
|
||||
<li class="folder-list-item">
|
||||
<a class="folder-link" href="games/strategy.html">Strategy</a>
|
||||
</li>
|
||||
<li class="folder-list-item">
|
||||
<a class="folder-link" href="games/vehicle.html">Vehicle</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</article>
|
||||
<script>
|
||||
function toggleMenu() {
|
||||
const menu = document.querySelector(".menu");
|
||||
menu.classList.toggle("active");
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
48
FOOS_ALT_WEBSITE/games/fps.html
Normal file
48
FOOS_ALT_WEBSITE/games/fps.html
Normal file
|
@ -0,0 +1,48 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Game List</title>
|
||||
<link rel="stylesheet" href="../list.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="header-content">
|
||||
<div class="project-name"><a href="../index.html">FOSS alternative</a></div>
|
||||
<button class="burger-menu" onclick="toggleMenu()">☰</button>
|
||||
<ul class="menu">
|
||||
<li><a href="../games.html">Games</a></li>
|
||||
<li><a href="../general.html">General</a></li>
|
||||
<li><a href="../tools.html">Tools</a></li>
|
||||
<li><a href="../media.html">Multimedia</a></li>
|
||||
<li><a href="../os.html">OS</a></li>
|
||||
<li><a href="../social-media.html">Social media</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</header>
|
||||
<article>
|
||||
<h1>Game List</h1>
|
||||
<h2>Fully Free</h2>
|
||||
<ul class="fully-free">
|
||||
<li>Xonotic</li>
|
||||
<li>Freedoom</li>
|
||||
<li>OpenArena</li>
|
||||
</ul>
|
||||
|
||||
<h2>Non-Free Assets</h2>
|
||||
<ul class="non-free-assets">
|
||||
<li>AssaultCube</li>
|
||||
<li>Cube</li>
|
||||
<li>Cube 2: Sauerbraten</li>
|
||||
<li>Doom</li>
|
||||
</ul>
|
||||
</article>
|
||||
<script>
|
||||
function toggleMenu() {
|
||||
const menu = document.querySelector(".menu");
|
||||
menu.classList.toggle("active");
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
47
FOOS_ALT_WEBSITE/games/general.html
Normal file
47
FOOS_ALT_WEBSITE/games/general.html
Normal file
|
@ -0,0 +1,47 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Game List</title>
|
||||
<link rel="stylesheet" href="../list.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="header-content">
|
||||
<div class="project-name"><a href="../index.html">FOSS alternative</a></div>
|
||||
<button class="burger-menu" onclick="toggleMenu()">☰</button>
|
||||
<ul class="menu">
|
||||
<li><a href="../games.html">Games</a></li>
|
||||
<li><a href="../general.html">General</a></li>
|
||||
<li><a href="../tools.html">Tools</a></li>
|
||||
<li><a href="../media.html">Multimedia</a></li>
|
||||
<li><a href="../os.html">OS</a></li>
|
||||
<li><a href="../social-media.html">Social media</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</header>
|
||||
<article>
|
||||
<h1>Game List</h1>
|
||||
<h2>Fully Free</h2>
|
||||
<ul class="fully-free">
|
||||
<li>KDE Games</li>
|
||||
<li>GNOME Games</li>
|
||||
<li>Friday Night Funkin'</li>
|
||||
</ul>
|
||||
|
||||
<h2>Non-Free Assets</h2>
|
||||
<ul class="non-free-assets">
|
||||
<li>osu!</li>
|
||||
<li>OpenMW</li>
|
||||
<li>Daggerfall Unity</li>
|
||||
</ul>
|
||||
</article>
|
||||
<script>
|
||||
function toggleMenu() {
|
||||
const menu = document.querySelector(".menu");
|
||||
menu.classList.toggle("active");
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
45
FOOS_ALT_WEBSITE/games/platformer.html
Normal file
45
FOOS_ALT_WEBSITE/games/platformer.html
Normal file
|
@ -0,0 +1,45 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Game List</title>
|
||||
<link rel="stylesheet" href="../list.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="header-content">
|
||||
<div class="project-name"><a href="../index.html">FOSS alternative</a></div>
|
||||
<button class="burger-menu" onclick="toggleMenu()">☰</button>
|
||||
<ul class="menu">
|
||||
<li><a href="../games.html">Games</a></li>
|
||||
<li><a href="../general.html">General</a></li>
|
||||
<li><a href="../tools.html">Tools</a></li>
|
||||
<li><a href="../media.html">Multimedia</a></li>
|
||||
<li><a href="../os.html">OS</a></li>
|
||||
<li><a href="../social-media.html">Social media</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</header>
|
||||
<article>
|
||||
<h1>Game List</h1>
|
||||
<h2>Fully Free</h2>
|
||||
<ul class="fully-free">
|
||||
<li>SuperTux</li>
|
||||
</ul>
|
||||
|
||||
<h2>Non-Free Assets</h2>
|
||||
<ul class="non-free-assets">
|
||||
<li>osu!</li>
|
||||
<li>OpenMW</li>
|
||||
<li>Daggerfall Unity</li>
|
||||
</ul>
|
||||
</article>
|
||||
<script>
|
||||
function toggleMenu() {
|
||||
const menu = document.querySelector(".menu");
|
||||
menu.classList.toggle("active");
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
46
FOOS_ALT_WEBSITE/games/sandbox.html
Normal file
46
FOOS_ALT_WEBSITE/games/sandbox.html
Normal file
|
@ -0,0 +1,46 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Game List</title>
|
||||
<link rel="stylesheet" href="../list.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="header-content">
|
||||
<div class="project-name"><a href="index.html">FOSS alternative</a></div>
|
||||
<button class="burger-menu" onclick="toggleMenu()">☰</button>
|
||||
<ul class="menu">
|
||||
<li><a href="../games.html">Games</a></li>
|
||||
<li><a href="../general.html">General</a></li>
|
||||
<li><a href="../tools.html">Tools</a></li>
|
||||
<li><a href="../media.html">Multimedia</a></li>
|
||||
<li><a href="../os.html">OS</a></li>
|
||||
<li><a href="../social-media.html">Social media</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</header>
|
||||
<article>
|
||||
<h1>Game List</h1>
|
||||
<h2>Fully Free</h2>
|
||||
<ul class="fully-free">
|
||||
<li>Minetest</li>
|
||||
<li>The Powder Toy</li>
|
||||
</ul>
|
||||
|
||||
<h2>Non-Free Assets</h2>
|
||||
<ul class="non-free-assets">
|
||||
<li>osu!</li>
|
||||
<li>OpenMW</li>
|
||||
<li>Daggerfall Unity</li>
|
||||
</ul>
|
||||
</article>
|
||||
<script>
|
||||
function toggleMenu() {
|
||||
const menu = document.querySelector(".menu");
|
||||
menu.classList.toggle("active");
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
47
FOOS_ALT_WEBSITE/games/strategy.html
Normal file
47
FOOS_ALT_WEBSITE/games/strategy.html
Normal file
|
@ -0,0 +1,47 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Game List</title>
|
||||
<link rel="stylesheet" href="../list.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="header-content">
|
||||
<div class="project-name"><a href="index.html">FOSS alternative</a></div>
|
||||
<button class="burger-menu" onclick="toggleMenu()">☰</button>
|
||||
<ul class="menu">
|
||||
<li><a href="../games.html">Games</a></li>
|
||||
<li><a href="../general.html">General</a></li>
|
||||
<li><a href="../tools.html">Tools</a></li>
|
||||
<li><a href="../media.html">Multimedia</a></li>
|
||||
<li><a href="../os.html">OS</a></li>
|
||||
<li><a href="../social-media.html">Social media</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</header>
|
||||
<article>
|
||||
<h1>Game List</h1>
|
||||
<h2>Fully Free</h2>
|
||||
<ul class="fully-free">
|
||||
<li>0 A.D.</li>
|
||||
<li>Freeciv</li>
|
||||
<li>OpenCity</li>
|
||||
<li>OpenTTD</li>
|
||||
</ul>
|
||||
|
||||
<h2>Non-Free Assets</h2>
|
||||
<ul class="non-free-assets">
|
||||
<li>OpenAge</li>
|
||||
<li>OpenRA</li>
|
||||
</ul>
|
||||
</article>
|
||||
<script>
|
||||
function toggleMenu() {
|
||||
const menu = document.querySelector(".menu");
|
||||
menu.classList.toggle("active");
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
43
FOOS_ALT_WEBSITE/games/vehicle.html
Normal file
43
FOOS_ALT_WEBSITE/games/vehicle.html
Normal file
|
@ -0,0 +1,43 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Game List</title>
|
||||
<link rel="stylesheet" href="../list.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="header-content">
|
||||
<div class="project-name"><a href="index.html">FOSS alternative</a></div>
|
||||
<button class="burger-menu" onclick="toggleMenu()">☰</button>
|
||||
<ul class="menu">
|
||||
<li><a href="../games.html">Games</a></li>
|
||||
<li><a href="../general.html">General</a></li>
|
||||
<li><a href="../tools.html">Tools</a></li>
|
||||
<li><a href="../media.html">Multimedia</a></li>
|
||||
<li><a href="../os.html">OS</a></li>
|
||||
<li><a href="../social-media.html">Social media</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</header>
|
||||
<article>
|
||||
<h1>Game List</h1>
|
||||
<h2>Fully Free</h2>
|
||||
<ul class="fully-free">
|
||||
<li>Rigs of Rods</li>
|
||||
<li>FlightGear</li>
|
||||
</ul>
|
||||
|
||||
<h2>Non-Free Assets</h2>
|
||||
<ul class="non-free-assets">
|
||||
</ul>
|
||||
</article>
|
||||
<script>
|
||||
function toggleMenu() {
|
||||
const menu = document.querySelector(".menu");
|
||||
menu.classList.toggle("active");
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
67
FOOS_ALT_WEBSITE/general.html
Normal file
67
FOOS_ALT_WEBSITE/general.html
Normal file
|
@ -0,0 +1,67 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>FOSS Alternatives</title>
|
||||
<link rel="stylesheet" href="styles.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="header-content">
|
||||
<div class="project-name"><a href="index.html">FOSS alternative</a></div>
|
||||
<button class="burger-menu" onclick="toggleMenu()">☰</button>
|
||||
<ul class="menu">
|
||||
<li><a href="games.html">Games</a></li>
|
||||
<li><a href="general.html">General</a></li>
|
||||
<li><a href="tools.html">Tools</a></li>
|
||||
<li><a href="media.html">Multimedia</a></li>
|
||||
<li><a href="os.html">OS</a></li>
|
||||
<li><a href="social-media.html">Social media</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</header>
|
||||
<article>
|
||||
<nav>
|
||||
<ul class="folder-list">
|
||||
<li class="folder-list-item">
|
||||
<a class="folder-link" href="general_purpose/3d_modeling.html">3D modeling</a>
|
||||
</li>
|
||||
<li class="folder-list-item">
|
||||
<a class="folder-link" href="general_purpose/cad.html">CAD</a>
|
||||
</li>
|
||||
<li class="folder-list-item">
|
||||
<a class="folder-link" href="general_purpose/disk_cleaner.html">Disk cleaner</a>
|
||||
</li>
|
||||
<li class="folder-list-item">
|
||||
<a class="folder-link" href="general_purpose/notes.html">Notes</a>
|
||||
</li>
|
||||
<li class="folder-list-item">
|
||||
<a class="folder-link" href="general_purpose/office_programs.html">Office</a>
|
||||
</li>
|
||||
<li class="folder-list-item">
|
||||
<a class="folder-link" href="general_purpose/password_manager.html">Password Manager</a>
|
||||
</li>
|
||||
<li class="folder-list-item">
|
||||
<a class="folder-link" href="general_purpose/pdf_viewer.html">PDF Viewer</a>
|
||||
</li>
|
||||
<li class="folder-list-item">
|
||||
<a class="folder-link" href="general_purpose/privacy_vpn.html">VPN</a>
|
||||
</li>
|
||||
<li class="folder-list-item">
|
||||
<a class="folder-link" href="general_purpose/programming.html">Programming</a>
|
||||
</li>
|
||||
<li class="folder-list-item">
|
||||
<a class="folder-link" href="general_purpose/template.html">template</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</article>
|
||||
<script>
|
||||
function toggleMenu() {
|
||||
const menu = document.querySelector(".menu");
|
||||
menu.classList.toggle("active");
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
38
FOOS_ALT_WEBSITE/general_purpose/3d_modeling.html
Normal file
38
FOOS_ALT_WEBSITE/general_purpose/3d_modeling.html
Normal file
|
@ -0,0 +1,38 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>General List</title>
|
||||
<link rel="stylesheet" href="../list.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="header-content">
|
||||
<div class="project-name"><a href="../index.html">FOSS alternative</a></div>
|
||||
<button class="burger-menu" onclick="toggleMenu()">☰</button>
|
||||
<ul class="menu">
|
||||
<li><a href="../games.html">Games</a></li>
|
||||
<li><a href="../general.html">General</a></li>
|
||||
<li><a href="../tools.html">Tools</a></li>
|
||||
<li><a href="../media.html">Multimedia</a></li>
|
||||
<li><a href="../os.html">OS</a></li>
|
||||
<li><a href="../social-media.html">Social media</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<article>
|
||||
<h1>5/5</h1>
|
||||
<ul class="fiveStar">
|
||||
<li>Blender</li>
|
||||
</ul>
|
||||
</article>
|
||||
<script>
|
||||
function toggleMenu() {
|
||||
const menu = document.querySelector(".menu");
|
||||
menu.classList.toggle("active");
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
42
FOOS_ALT_WEBSITE/general_purpose/cad.html
Normal file
42
FOOS_ALT_WEBSITE/general_purpose/cad.html
Normal file
|
@ -0,0 +1,42 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>General List</title>
|
||||
<link rel="stylesheet" href="../list.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="header-content">
|
||||
<div class="project-name"><a href="../index.html">FOSS alternative</a></div>
|
||||
<button class="burger-menu" onclick="toggleMenu()">☰</button>
|
||||
<ul class="menu">
|
||||
<li><a href="../games.html">Games</a></li>
|
||||
<li><a href="../general.html">General</a></li>
|
||||
<li><a href="../tools.html">Tools</a></li>
|
||||
<li><a href="../media.html">Multimedia</a></li>
|
||||
<li><a href="../os.html">OS</a></li>
|
||||
<li><a href="../social-media.html">Social media</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<article>
|
||||
<h1>5/5</h1>
|
||||
<ul class="fiveStar">
|
||||
<li>FreeCAD</li>
|
||||
</ul>
|
||||
<h1>4/5</h1>
|
||||
<ul class="fourStar">
|
||||
<li>OpenSCAD</li>
|
||||
</ul>
|
||||
</article>
|
||||
<script>
|
||||
function toggleMenu() {
|
||||
const menu = document.querySelector(".menu");
|
||||
menu.classList.toggle("active");
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
38
FOOS_ALT_WEBSITE/general_purpose/disk_cleaner.html
Normal file
38
FOOS_ALT_WEBSITE/general_purpose/disk_cleaner.html
Normal file
|
@ -0,0 +1,38 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>General List</title>
|
||||
<link rel="stylesheet" href="../list.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="header-content">
|
||||
<div class="project-name"><a href="../index.html">FOSS alternative</a></div>
|
||||
<button class="burger-menu" onclick="toggleMenu()">☰</button>
|
||||
<ul class="menu">
|
||||
<li><a href="../games.html">Games</a></li>
|
||||
<li><a href="../general.html">General</a></li>
|
||||
<li><a href="../tools.html">Tools</a></li>
|
||||
<li><a href="../media.html">Multimedia</a></li>
|
||||
<li><a href="../os.html">OS</a></li>
|
||||
<li><a href="../social-media.html">Social media</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<article>
|
||||
<h1>5/5</h1>
|
||||
<ul class="fiveStar">
|
||||
<li>Bleachbit</li>
|
||||
</ul>
|
||||
</article>
|
||||
<script>
|
||||
function toggleMenu() {
|
||||
const menu = document.querySelector(".menu");
|
||||
menu.classList.toggle("active");
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
42
FOOS_ALT_WEBSITE/general_purpose/notes.html
Normal file
42
FOOS_ALT_WEBSITE/general_purpose/notes.html
Normal file
|
@ -0,0 +1,42 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>General List</title>
|
||||
<link rel="stylesheet" href="../list.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="header-content">
|
||||
<div class="project-name"><a href="../index.html">FOSS alternative</a></div>
|
||||
<button class="burger-menu" onclick="toggleMenu()">☰</button>
|
||||
<ul class="menu">
|
||||
<li><a href="../games.html">Games</a></li>
|
||||
<li><a href="../general.html">General</a></li>
|
||||
<li><a href="../tools.html">Tools</a></li>
|
||||
<li><a href="../media.html">Multimedia</a></li>
|
||||
<li><a href="../os.html">OS</a></li>
|
||||
<li><a href="../social-media.html">Social media</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<article>
|
||||
<h1>5/5</h1>
|
||||
<ul class="fiveStar">
|
||||
<li>Trillium</li>
|
||||
</ul>
|
||||
<h1>4/5</h1>
|
||||
<ul class="fourStar">
|
||||
<li>Joplin</li>
|
||||
</ul>
|
||||
</article>
|
||||
<script>
|
||||
function toggleMenu() {
|
||||
const menu = document.querySelector(".menu");
|
||||
menu.classList.toggle("active");
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
43
FOOS_ALT_WEBSITE/general_purpose/office_programs.html
Normal file
43
FOOS_ALT_WEBSITE/general_purpose/office_programs.html
Normal file
|
@ -0,0 +1,43 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>General List</title>
|
||||
<link rel="stylesheet" href="../list.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="header-content">
|
||||
<div class="project-name"><a href="../index.html">FOSS alternative</a></div>
|
||||
<button class="burger-menu" onclick="toggleMenu()">☰</button>
|
||||
<ul class="menu">
|
||||
<li><a href="../games.html">Games</a></li>
|
||||
<li><a href="../general.html">General</a></li>
|
||||
<li><a href="../tools.html">Tools</a></li>
|
||||
<li><a href="../media.html">Multimedia</a></li>
|
||||
<li><a href="../os.html">OS</a></li>
|
||||
<li><a href="../social-media.html">Social media</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<article>
|
||||
<h1>5/5</h1>
|
||||
<ul class="fiveStar">
|
||||
<li>LibreOffice</li>
|
||||
</ul>
|
||||
<h1>4/5</h1>
|
||||
<ul class="fourStar">
|
||||
<li>ONLYOFFICE</li>
|
||||
<li>Collabora Online</li>
|
||||
</ul>
|
||||
</article>
|
||||
<script>
|
||||
function toggleMenu() {
|
||||
const menu = document.querySelector(".menu");
|
||||
menu.classList.toggle("active");
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
43
FOOS_ALT_WEBSITE/general_purpose/password_manager.html
Normal file
43
FOOS_ALT_WEBSITE/general_purpose/password_manager.html
Normal file
|
@ -0,0 +1,43 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>General List</title>
|
||||
<link rel="stylesheet" href="../list.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="header-content">
|
||||
<div class="project-name"><a href="../index.html">FOSS alternative</a></div>
|
||||
<button class="burger-menu" onclick="toggleMenu()">☰</button>
|
||||
<ul class="menu">
|
||||
<li><a href="../games.html">Games</a></li>
|
||||
<li><a href="../general.html">General</a></li>
|
||||
<li><a href="../tools.html">Tools</a></li>
|
||||
<li><a href="../media.html">Multimedia</a></li>
|
||||
<li><a href="../os.html">OS</a></li>
|
||||
<li><a href="../social-media.html">Social media</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</header>
|
||||
<article>
|
||||
<h1>5/5</h1>
|
||||
<ul class="fiveStar">
|
||||
<li>KeePassXC</li>
|
||||
</ul>
|
||||
<h1>4/5</h1>
|
||||
<ul class="fourStar">
|
||||
<li>Bitwarden</li>
|
||||
<li>Proton Pass</li>
|
||||
</ul>
|
||||
</article>
|
||||
<script>
|
||||
function toggleMenu() {
|
||||
const menu = document.querySelector(".menu");
|
||||
menu.classList.toggle("active");
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
39
FOOS_ALT_WEBSITE/general_purpose/pdf_viewer.html
Normal file
39
FOOS_ALT_WEBSITE/general_purpose/pdf_viewer.html
Normal file
|
@ -0,0 +1,39 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>General List</title>
|
||||
<link rel="stylesheet" href="../list.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="header-content">
|
||||
<div class="project-name"><a href="../index.html">FOSS alternative</a></div>
|
||||
<button class="burger-menu" onclick="toggleMenu()">☰</button>
|
||||
<ul class="menu">
|
||||
<li><a href="../games.html">Games</a></li>
|
||||
<li><a href="../general.html">General</a></li>
|
||||
<li><a href="../tools.html">Tools</a></li>
|
||||
<li><a href="../media.html">Multimedia</a></li>
|
||||
<li><a href="../os.html">OS</a></li>
|
||||
<li><a href="../social-media.html">Social media</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</header>
|
||||
<article>
|
||||
<h1>5/5</h1>
|
||||
<ul class="fiveStar">
|
||||
<li>Ôkular</li>
|
||||
</ul>
|
||||
|
||||
</article>
|
||||
<script>
|
||||
function toggleMenu() {
|
||||
const menu = document.querySelector(".menu");
|
||||
menu.classList.toggle("active");
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
42
FOOS_ALT_WEBSITE/general_purpose/privacy_vpn.html
Normal file
42
FOOS_ALT_WEBSITE/general_purpose/privacy_vpn.html
Normal file
|
@ -0,0 +1,42 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>General List</title>
|
||||
<link rel="stylesheet" href="../list.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="header-content">
|
||||
<div class="project-name"><a href="../index.html">FOSS alternative</a></div>
|
||||
<button class="burger-menu" onclick="toggleMenu()">☰</button>
|
||||
<ul class="menu">
|
||||
<li><a href="../games.html">Games</a></li>
|
||||
<li><a href="../general.html">General</a></li>
|
||||
<li><a href="../tools.html">Tools</a></li>
|
||||
<li><a href="../media.html">Multimedia</a></li>
|
||||
<li><a href="../os.html">OS</a></li>
|
||||
<li><a href="../social-media.html">Social media</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</header>
|
||||
<article>
|
||||
<h1>5/5</h1>
|
||||
<ul class="fiveStar">
|
||||
<li>ProtonVPN</li>
|
||||
</ul>
|
||||
<h1>4/5</h1>
|
||||
<ul class="fourStar">
|
||||
<li>Mullvad VPN</li>
|
||||
</ul>
|
||||
</article>
|
||||
<script>
|
||||
function toggleMenu() {
|
||||
const menu = document.querySelector(".menu");
|
||||
menu.classList.toggle("active");
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
38
FOOS_ALT_WEBSITE/general_purpose/programming.html
Normal file
38
FOOS_ALT_WEBSITE/general_purpose/programming.html
Normal file
|
@ -0,0 +1,38 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>General List</title>
|
||||
<link rel="stylesheet" href="../list.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="header-content">
|
||||
<div class="project-name"><a href="../index.html">FOSS alternative</a></div>
|
||||
<button class="burger-menu" onclick="toggleMenu()">☰</button>
|
||||
<ul class="menu">
|
||||
<li><a href="../games.html">Games</a></li>
|
||||
<li><a href="../general.html">General</a></li>
|
||||
<li><a href="../tools.html">Tools</a></li>
|
||||
<li><a href="../media.html">Multimedia</a></li>
|
||||
<li><a href="../os.html">OS</a></li>
|
||||
<li><a href="../social-media.html">Social media</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</header>
|
||||
<article>
|
||||
<h1>5/5</h1>
|
||||
<ul class="fiveStar">
|
||||
<li>VS Codium</li>
|
||||
</ul>
|
||||
</article>
|
||||
<script>
|
||||
function toggleMenu() {
|
||||
const menu = document.querySelector(".menu");
|
||||
menu.classList.toggle("active");
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
76
FOOS_ALT_WEBSITE/general_purpose/template.html
Normal file
76
FOOS_ALT_WEBSITE/general_purpose/template.html
Normal file
|
@ -0,0 +1,76 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>General List</title>
|
||||
<link rel="stylesheet" href="../list.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="header-content">
|
||||
<div class="project-name"><a href="../index.html">FOSS alternative</a></div>
|
||||
<button class="burger-menu" onclick="toggleMenu()">☰</button>
|
||||
<ul class="menu">
|
||||
<li><a href="../games.html">Games</a></li>
|
||||
<li><a href="../general.html">General</a></li>
|
||||
<li><a href="../tools.html">Tools</a></li>
|
||||
<li><a href="../media.html">Multimedia</a></li>
|
||||
<li><a href="../os.html">OS</a></li>
|
||||
<li><a href="../social-media.html">Social media</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</header>
|
||||
<article>
|
||||
<h1>5/5</h1>
|
||||
<ul class="fiveStar">
|
||||
<li>Entry 1</li>
|
||||
<li>Entry 2</li>
|
||||
<li>Entry 3</li>
|
||||
<li>Entry 4</li>
|
||||
</ul>
|
||||
<h1>4/5</h1>
|
||||
<ul class="fourStar">
|
||||
<li>Entry 1</li>
|
||||
<li>Entry 2</li>
|
||||
<li>Entry 3</li>
|
||||
<li>Entry 4</li>
|
||||
</ul>
|
||||
<h1>3/5</h1>
|
||||
<ul class="threeStar">
|
||||
<li>Entry 1</li>
|
||||
<li>Entry 2</li>
|
||||
<li>Entry 3</li>
|
||||
<li>Entry 4</li>
|
||||
</ul>
|
||||
<h1>2/5</h1>
|
||||
<ul class="twoStar">
|
||||
<li>Entry 1</li>
|
||||
<li>Entry 2</li>
|
||||
<li>Entry 3</li>
|
||||
<li>Entry 4</li>
|
||||
</ul>
|
||||
<h1>1/5</h1>
|
||||
<ul class="oneStar">
|
||||
<li>Entry 1</li>
|
||||
<li>Entry 2</li>
|
||||
<li>Entry 3</li>
|
||||
<li>Entry 4</li>
|
||||
</ul>
|
||||
<h1>0/5</h1>
|
||||
<ul class="death">
|
||||
<li>Entry 1</li>
|
||||
<li>Entry 2</li>
|
||||
<li>Entry 3</li>
|
||||
<li>Entry 4</li>
|
||||
</ul>
|
||||
</article>
|
||||
<script>
|
||||
function toggleMenu() {
|
||||
const menu = document.querySelector(".menu");
|
||||
menu.classList.toggle("active");
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
173
FOOS_ALT_WEBSITE/index.html
Normal file
173
FOOS_ALT_WEBSITE/index.html
Normal file
|
@ -0,0 +1,173 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>FOSS Alternatives</title>
|
||||
<link rel="stylesheet" href="styles.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="header-content">
|
||||
<div class="project-name"><a href="index.html">FOSS alternative</a></div>
|
||||
<button class="burger-menu" onclick="toggleMenu()">☰</button>
|
||||
<ul class="menu">
|
||||
<li><a href="games.html">Games</a></li>
|
||||
<li><a href="general.html">General</a></li>
|
||||
<li><a href="tools.html">Tools</a></li>
|
||||
<li><a href="media.html">Multimedia</a></li>
|
||||
<li><a href="os.html">OS</a></li>
|
||||
<li><a href="social-media.html">Social media</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</header>
|
||||
<article>
|
||||
<h1>foss-alternatives</h1>
|
||||
<p class="text">
|
||||
This contains a spreadsheet with good alternatives to non-free programs.
|
||||
|
||||
The rating system takes into an account:
|
||||
Viability for regular users.
|
||||
Actual quality of the program.
|
||||
|
||||
If you have a suggestion or don't agree with a rating or alternative, please create an issue.
|
||||
|
||||
Credit and thanks to:
|
||||
<br>
|
||||
<a href=" https://github.com/flick9000/instead-of?tab=readme-ov-file"> https://github.com/flick9000/instead-of?tab=readme-ov-file</a>
|
||||
for some inspiration.
|
||||
</p>
|
||||
|
||||
<h1>License</h1>
|
||||
<p class="text">
|
||||
Creative Commons Legal Code <br>
|
||||
CC0 1.0 Universal <br>
|
||||
<br>
|
||||
CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE
|
||||
LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN
|
||||
ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS
|
||||
INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES
|
||||
REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS
|
||||
PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM
|
||||
THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED
|
||||
HEREUNDER. <br>
|
||||
<br>
|
||||
Statement of Purpose <br>
|
||||
<br>
|
||||
The laws of most jurisdictions throughout the world automatically confer
|
||||
exclusive Copyright and Related Rights (defined below) upon the creator
|
||||
and subsequent owner(s) (each and all, an "owner") of an original work of
|
||||
authorship and/or a database (each, a "Work"). <br>
|
||||
<br>
|
||||
Certain owners wish to permanently relinquish those rights to a Work for
|
||||
the purpose of contributing to a commons of creative, cultural and
|
||||
scientific works ("Commons") that the public can reliably and without fear
|
||||
of later claims of infringement build upon, modify, incorporate in other
|
||||
works, reuse and redistribute as freely as possible in any form whatsoever
|
||||
and for any purposes, including without limitation commercial purposes.
|
||||
These owners may contribute to the Commons to promote the ideal of a free
|
||||
culture and the further production of creative, cultural and scientific
|
||||
works, or to gain reputation or greater distribution for their Work in
|
||||
part through the use and efforts of others. <br>
|
||||
<br>
|
||||
For these and/or other purposes and motivations, and without any
|
||||
expectation of additional consideration or compensation, the person
|
||||
associating CC0 with a Work (the "Affirmer"), to the extent that he or she
|
||||
is an owner of Copyright and Related Rights in the Work, voluntarily
|
||||
elects to apply CC0 to the Work and publicly distribute the Work under its
|
||||
terms, with knowledge of his or her Copyright and Related Rights in the
|
||||
Work and the meaning and intended legal effect of CC0 on those rights. <br>
|
||||
<br>
|
||||
1. Copyright and Related Rights. A Work made available under CC0 may be
|
||||
protected by copyright and related or neighboring rights ("Copyright and
|
||||
Related Rights"). Copyright and Related Rights include, but are not
|
||||
limited to, the following: <br>
|
||||
<br>
|
||||
i. the right to reproduce, adapt, distribute, perform, display,
|
||||
communicate, and translate a Work; <br>
|
||||
ii. moral rights retained by the original author(s) and/or performer(s); <br>
|
||||
iii. publicity and privacy rights pertaining to a person's image or
|
||||
likeness depicted in a Work;<br>
|
||||
iv. rights protecting against unfair competition in regards to a Work,
|
||||
subject to the limitations in paragraph 4(a), below;<br>
|
||||
v. rights protecting the extraction, dissemination, use and reuse of data
|
||||
in a Work;<br>
|
||||
vi. database rights (such as those arising under Directive 96/9/EC of the
|
||||
European Parliament and of the Council of 11 March 1996 on the legal
|
||||
protection of databases, and under any national implementation
|
||||
thereof, including any amended or successor version of such
|
||||
directive); and <br>
|
||||
vii. other similar, equivalent or corresponding rights throughout the
|
||||
world based on applicable law or treaty, and any national
|
||||
implementations thereof. <br>
|
||||
<br>
|
||||
2. Waiver. To the greatest extent permitted by, but not in contravention
|
||||
of, applicable law, Affirmer hereby overtly, fully, permanently,
|
||||
irrevocably and unconditionally waives, abandons, and surrenders all of
|
||||
Affirmer's Copyright and Related Rights and associated claims and causes
|
||||
of action, whether now known or unknown (including existing as well as
|
||||
future claims and causes of action), in the Work (i) in all territories
|
||||
worldwide, (ii) for the maximum duration provided by applicable law or
|
||||
treaty (including future time extensions), (iii) in any current or future
|
||||
medium and for any number of copies, and (iv) for any purpose whatsoever,
|
||||
including without limitation commercial, advertising or promotional
|
||||
purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each
|
||||
member of the public at large and to the detriment of Affirmer's heirs and
|
||||
successors, fully intending that such Waiver shall not be subject to
|
||||
revocation, rescission, cancellation, termination, or any other legal or
|
||||
equitable action to disrupt the quiet enjoyment of the Work by the public
|
||||
as contemplated by Affirmer's express Statement of Purpose. <br>
|
||||
<br>
|
||||
3. Public License Fallback. Should any part of the Waiver for any reason
|
||||
be judged legally invalid or ineffective under applicable law, then the
|
||||
Waiver shall be preserved to the maximum extent permitted taking into
|
||||
account Affirmer's express Statement of Purpose. In addition, to the
|
||||
extent the Waiver is so judged Affirmer hereby grants to each affected
|
||||
person a royalty-free, non transferable, non sublicensable, non exclusive,
|
||||
irrevocable and unconditional license to exercise Affirmer's Copyright and
|
||||
Related Rights in the Work (i) in all territories worldwide, (ii) for the
|
||||
maximum duration provided by applicable law or treaty (including future
|
||||
time extensions), (iii) in any current or future medium and for any number
|
||||
of copies, and (iv) for any purpose whatsoever, including without
|
||||
limitation commercial, advertising or promotional purposes (the
|
||||
"License"). The License shall be deemed effective as of the date CC0 was
|
||||
applied by Affirmer to the Work. Should any part of the License for any
|
||||
reason be judged legally invalid or ineffective under applicable law, such
|
||||
partial invalidity or ineffectiveness shall not invalidate the remainder
|
||||
of the License, and in such case Affirmer hereby affirms that he or she
|
||||
will not (i) exercise any of his or her remaining Copyright and Related
|
||||
Rights in the Work or (ii) assert any associated claims and causes of
|
||||
action with respect to the Work, in either case contrary to Affirmer's
|
||||
express Statement of Purpose. <br>
|
||||
<br>
|
||||
4. Limitations and Disclaimers. <br>
|
||||
<br>
|
||||
a. No trademark or patent rights held by Affirmer are waived, abandoned,
|
||||
surrendered, licensed or otherwise affected by this document. <br>
|
||||
b. Affirmer offers the Work as-is and makes no representations or
|
||||
warranties of any kind concerning the Work, express, implied,
|
||||
statutory or otherwise, including without limitation warranties of
|
||||
title, merchantability, fitness for a particular purpose, non
|
||||
infringement, or the absence of latent or other defects, accuracy, or
|
||||
the present or absence of errors, whether or not discoverable, all to
|
||||
the greatest extent permissible under applicable law. <br>
|
||||
c. Affirmer disclaims responsibility for clearing rights of other persons
|
||||
that may apply to the Work or any use thereof, including without
|
||||
limitation any person's Copyright and Related Rights in the Work.
|
||||
Further, Affirmer disclaims responsibility for obtaining any necessary
|
||||
consents, permissions or other rights required for any use of the
|
||||
Work. <br>
|
||||
d. Affirmer understands and acknowledges that Creative Commons is not a
|
||||
party to this document and has no duty or obligation with respect to
|
||||
this CC0 or use of the Work. <br>
|
||||
<br>
|
||||
</p>
|
||||
</article>
|
||||
<script>
|
||||
function toggleMenu() {
|
||||
const menu = document.querySelector(".menu");
|
||||
menu.classList.toggle("active");
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
58
FOOS_ALT_WEBSITE/internet_tools/browsers.html
Normal file
58
FOOS_ALT_WEBSITE/internet_tools/browsers.html
Normal file
|
@ -0,0 +1,58 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>FOSS Alternative</title>
|
||||
<link rel="stylesheet" href="../list.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="header-content">
|
||||
<div class="project-name"><a href="../index.html">FOSS alternative</a></div>
|
||||
<button class="burger-menu" onclick="toggleMenu()">☰</button>
|
||||
<ul class="menu">
|
||||
<li><a href="../games.html">Games</a></li>
|
||||
<li><a href="../general.html">General</a></li>
|
||||
<li><a href="../tools.html">Tools</a></li>
|
||||
<li><a href="../media.html">Multimedia</a></li>
|
||||
<li><a href="../os.html">OS</a></li>
|
||||
<li><a href="../social-media.html">Social media</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</header>
|
||||
<article>
|
||||
<h1>5/5</h1>
|
||||
<ul class="fiveStar">
|
||||
<li>Firefox</li>
|
||||
</ul>
|
||||
<h1>4/5</h1>
|
||||
<ul class="fourStar">
|
||||
<li>LibreWolf</li>
|
||||
<li>Thorium</li>
|
||||
<li>Brave</li>
|
||||
</ul>
|
||||
<h1>3/5</h1>
|
||||
<ul class="threeStar">
|
||||
<li>Tor Browser</li>
|
||||
<li>Chromium</li>
|
||||
<li>Pale Moon</li>
|
||||
</ul>
|
||||
<h1>2/5</h1>
|
||||
<ul class="twoStar">
|
||||
<li>Ungoogled-Chromium</li>
|
||||
</ul>
|
||||
<h1>1/5</h1>
|
||||
<ul class="oneStar">
|
||||
<li>vivaldi</li>
|
||||
</ul>
|
||||
</article>
|
||||
<script>
|
||||
function toggleMenu() {
|
||||
const menu = document.querySelector(".menu");
|
||||
menu.classList.toggle("active");
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
42
FOOS_ALT_WEBSITE/internet_tools/mail_clients.html
Normal file
42
FOOS_ALT_WEBSITE/internet_tools/mail_clients.html
Normal file
|
@ -0,0 +1,42 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>FOSS Alternative</title>
|
||||
<link rel="stylesheet" href="../list.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="header-content">
|
||||
<div class="project-name"><a href="../index.html">FOSS alternative</a></div>
|
||||
<button class="burger-menu" onclick="toggleMenu()">☰</button>
|
||||
<ul class="menu">
|
||||
<li><a href="../games.html">Games</a></li>
|
||||
<li><a href="../general.html">General</a></li>
|
||||
<li><a href="../tools.html">Tools</a></li>
|
||||
<li><a href="../media.html">Multimedia</a></li>
|
||||
<li><a href="../os.html">OS</a></li>
|
||||
<li><a href="../social-media.html">Social media</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</header>
|
||||
<article>
|
||||
<h1>5/5</h1>
|
||||
<ul class="fiveStar">
|
||||
<li>Thunderbird</li>
|
||||
</ul>
|
||||
<h1>3/5</h1>
|
||||
<ul class="threeStar">
|
||||
<li>SeaMonkey</li>
|
||||
</ul>
|
||||
</article>
|
||||
<script>
|
||||
function toggleMenu() {
|
||||
const menu = document.querySelector(".menu");
|
||||
menu.classList.toggle("active");
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
62
FOOS_ALT_WEBSITE/internet_tools/search_engines.html
Normal file
62
FOOS_ALT_WEBSITE/internet_tools/search_engines.html
Normal file
|
@ -0,0 +1,62 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>FOSS Alternative</title>
|
||||
<link rel="stylesheet" href="../list.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="header-content">
|
||||
<div class="project-name"><a href="../index.html">FOSS alternative</a></div>
|
||||
<button class="burger-menu" onclick="toggleMenu()">☰</button>
|
||||
<ul class="menu">
|
||||
<li><a href="../games.html">Games</a></li>
|
||||
<li><a href="../general.html">General</a></li>
|
||||
<li><a href="../tools.html">Tools</a></li>
|
||||
<li><a href="../media.html">Multimedia</a></li>
|
||||
<li><a href="../os.html">OS</a></li>
|
||||
<li><a href="../social-media.html">Social media</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<article>
|
||||
<h1>5/5</h1>
|
||||
<ul class="fiveStar">
|
||||
<li>DuckDuckGo</li>
|
||||
</ul>
|
||||
|
||||
<h1>4/5</h1>
|
||||
<ul class="fourStar">
|
||||
<li>Qwant</li>
|
||||
<li>Startpage</li>
|
||||
<li>Brave Search</li>
|
||||
<li>Ecosia</li>
|
||||
</ul>
|
||||
|
||||
<h1>3/5</h1>
|
||||
<ul class="threeStar">
|
||||
<li>SearXNG</li>
|
||||
</ul>
|
||||
|
||||
<h1>2/5</h1>
|
||||
<ul class="twoStar">
|
||||
<li>Ungoogled-Chromium</li>
|
||||
</ul>
|
||||
|
||||
<h1>1/5</h1>
|
||||
<ul class="oneStar">
|
||||
<li>Vivaldi</li>
|
||||
</ul>
|
||||
</article>
|
||||
|
||||
<script>
|
||||
function toggleMenu() {
|
||||
const menu = document.querySelector(".menu");
|
||||
menu.classList.toggle("active");
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
286
FOOS_ALT_WEBSITE/list.css
Normal file
286
FOOS_ALT_WEBSITE/list.css
Normal file
|
@ -0,0 +1,286 @@
|
|||
/* Reset and global styles */
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
|
||||
transition: 1s;
|
||||
}
|
||||
|
||||
/* Body styles */
|
||||
body {
|
||||
background-color: #f5f5f5;
|
||||
background-image: url("assets/");
|
||||
background-repeat: no-repeat;
|
||||
background-size: cover;
|
||||
background-position: center;
|
||||
background-attachment: fixed;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
min-height: 100vh;
|
||||
}
|
||||
|
||||
/* Header styles */
|
||||
header {
|
||||
background-color: rgba(0, 0, 0, 0.7);
|
||||
padding: 10px;
|
||||
width: 100%;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
z-index: 1000;
|
||||
}
|
||||
|
||||
.header-content {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.project-name {
|
||||
color: white;
|
||||
font-size: 1.5em;
|
||||
text-decoration: none; /* Ensure no underline */
|
||||
}
|
||||
|
||||
.burger-menu {
|
||||
background: none;
|
||||
border: none;
|
||||
color: white;
|
||||
font-size: 1.5em;
|
||||
cursor: pointer;
|
||||
display: none;
|
||||
}
|
||||
|
||||
.menu {
|
||||
list-style: none;
|
||||
display: flex;
|
||||
justify-content: space-around;
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
header li {
|
||||
margin: 0 10px;
|
||||
}
|
||||
|
||||
header a {
|
||||
color: white;
|
||||
text-decoration: none; /* Ensure no underline */
|
||||
padding: 10px;
|
||||
border-radius: 5px;
|
||||
transition: background-color 0.3s ease;
|
||||
}
|
||||
|
||||
header a:hover {
|
||||
background-color: rgba(255, 255, 255, 0.2);
|
||||
}
|
||||
|
||||
/* Article styles */
|
||||
article {
|
||||
margin-top: 100px;
|
||||
margin-bottom: 50px;
|
||||
padding: 20px;
|
||||
width: 90%;
|
||||
max-width: 800px;
|
||||
background: rgba(255, 255, 255, 0.9);
|
||||
border-radius: 10px;
|
||||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
h1 {
|
||||
color: #333;
|
||||
margin-bottom: 20px;
|
||||
font-size: 2em;
|
||||
}
|
||||
|
||||
p.text {
|
||||
color: #666;
|
||||
line-height: 1.2;
|
||||
margin-bottom: 20px;
|
||||
font-size: 1em;
|
||||
}
|
||||
|
||||
img {
|
||||
max-width: 100%;
|
||||
height: auto;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
button {
|
||||
padding: 10px 20px;
|
||||
margin: 2em;
|
||||
border: none;
|
||||
background-color: #333;
|
||||
color: white;
|
||||
border-radius: 5px;
|
||||
cursor: pointer;
|
||||
transition: background-color 0.3s ease;
|
||||
}
|
||||
|
||||
button:hover {
|
||||
background-color: #555;
|
||||
}
|
||||
|
||||
.flex {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
nav {
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.folder-list {
|
||||
list-style-type: none;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.folder-list-item {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.folder-link {
|
||||
text-decoration: none;
|
||||
color: #eee8e8;
|
||||
font-weight: bold;
|
||||
display: block;
|
||||
padding: 10px;
|
||||
border-radius: 5px;
|
||||
background: linear-gradient(to right, #000000, #707070); /* Gradient background */
|
||||
}
|
||||
|
||||
.folder-link:hover {
|
||||
background: linear-gradient(to right, #707070, #000000); /* Gradient change on hover */
|
||||
}
|
||||
|
||||
.folder-link:active {
|
||||
transform: scale(0.98); /* Slight scale down on click */
|
||||
}
|
||||
|
||||
/* Mobile Styles */
|
||||
@media (max-width: 1000px) {
|
||||
.burger-menu {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.menu {
|
||||
display: none;
|
||||
flex-direction: column;
|
||||
background-color: rgba(0, 0, 0, 0.7);
|
||||
position: absolute;
|
||||
top: 100%; /* Adjusted position */
|
||||
left: 0;
|
||||
width: 100%;
|
||||
z-index: 999;
|
||||
}
|
||||
|
||||
.menu.active {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
header {
|
||||
padding: 5px;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.header-content {
|
||||
flex-direction: row;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.project-name {
|
||||
font-size: 1.2em;
|
||||
}
|
||||
|
||||
header li {
|
||||
margin: 0;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
header a {
|
||||
padding: 10px;
|
||||
width: 100%;
|
||||
display: block;
|
||||
}
|
||||
|
||||
article {
|
||||
margin-top: 190px;
|
||||
padding-top: 20px;
|
||||
}
|
||||
}
|
||||
|
||||
article ul {
|
||||
list-style-type: none;
|
||||
padding: 0;
|
||||
width: 50%;
|
||||
margin: 0 auto;
|
||||
background-color: #fff;
|
||||
border-radius: 8px;
|
||||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
ul.fully-free {
|
||||
border: 2px solid #4CAF50;
|
||||
}
|
||||
|
||||
ul.non-free-assets {
|
||||
border: 2px solid #FF5722;
|
||||
}
|
||||
|
||||
article ul li {
|
||||
padding: 12px;
|
||||
border-bottom: 1px solid #ddd;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
ul li:last-child {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
ul.fully-free li {
|
||||
background-color: #e8f5e9;
|
||||
}
|
||||
|
||||
ul.non-free-assets li {
|
||||
background-color: #ffebee;
|
||||
}
|
||||
|
||||
.fiveStar, .fourStar, .threeStar, .twoStar, .oneStar, .death{
|
||||
margin-bottom: 1em;
|
||||
color: white;
|
||||
font-weight: bold;
|
||||
text-shadow: red;
|
||||
}
|
||||
|
||||
ul.fiveStar {
|
||||
background: #01ab04;
|
||||
}
|
||||
|
||||
ul.fourStar {
|
||||
background: #59ff00;
|
||||
}
|
||||
|
||||
ul.threeStar {
|
||||
background: rgb(226, 226, 0);
|
||||
}
|
||||
|
||||
ul.twoStar {
|
||||
background: #ff9d00;
|
||||
}
|
||||
|
||||
ul.oneStar {
|
||||
background: #ff0000;
|
||||
}
|
||||
|
||||
ul.death {
|
||||
background: #920e0e;
|
||||
color: white;
|
||||
font-weight: bold;
|
||||
text-shadow: red;
|
||||
}
|
65
FOOS_ALT_WEBSITE/media.html
Normal file
65
FOOS_ALT_WEBSITE/media.html
Normal file
|
@ -0,0 +1,65 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>FOSS Alternatives</title>
|
||||
<link rel="stylesheet" href="styles.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="header-content">
|
||||
<div class="project-name"><a href="index.html">FOSS alternative</a></div>
|
||||
<button class="burger-menu" onclick="toggleMenu()">☰</button>
|
||||
<ul class="menu">
|
||||
<li><a href="games.html">Games</a></li>
|
||||
<li><a href="general.html">General</a></li>
|
||||
<li><a href="tools.html">Tools</a></li>
|
||||
<li><a href="media.html">Multimedia</a></li>
|
||||
<li><a href="os.html">OS</a></li>
|
||||
<li><a href="social-media.html">Social media</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</header>
|
||||
<article>
|
||||
<nav>
|
||||
<ul class="folder-list">
|
||||
<li class="folder-list-item">
|
||||
<a class="folder-link" href="multimedia/audio_editors.html">Audio</a>
|
||||
</li>
|
||||
<li class="folder-list-item">
|
||||
<a class="folder-link" href="multimedia/image_editing.html">Image editing</a>
|
||||
</li>
|
||||
<li class="folder-list-item">
|
||||
<a class="folder-link" href="multimedia/media_player.html">Media Player</a>
|
||||
</li>
|
||||
<li class="folder-list-item">
|
||||
<a class="folder-link" href="multimedia/multimedia_frontend.html">Multimedia Frontend</a>
|
||||
</li>
|
||||
<li class="folder-list-item">
|
||||
<a class="folder-link" href="multimedia/painting.html">Painting</a>
|
||||
</li>
|
||||
<li class="folder-list-item">
|
||||
<a class="folder-link" href="multimedia/photo_editing.html">Photo editing</a>
|
||||
</li>
|
||||
<li class="folder-list-item">
|
||||
<a class="folder-link" href="multimedia/photo_processing.html">Photo processing</a>
|
||||
</li>
|
||||
<li class="folder-list-item">
|
||||
<a class="folder-link" href="multimedia/recording.html">Screen capture & recording</a>
|
||||
</li>
|
||||
<li class="folder-list-item">
|
||||
<a class="folder-link" href="multimedia/video_editors.html">Video editing</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
</article>
|
||||
<script>
|
||||
function toggleMenu() {
|
||||
const menu = document.querySelector(".menu");
|
||||
menu.classList.toggle("active");
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
38
FOOS_ALT_WEBSITE/multimedia/audio_editors.html
Normal file
38
FOOS_ALT_WEBSITE/multimedia/audio_editors.html
Normal file
|
@ -0,0 +1,38 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>FOSS Alternative</title>
|
||||
<link rel="stylesheet" href="../list.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="header-content">
|
||||
<div class="project-name"><a href="../index.html">FOSS alternative</a></div>
|
||||
<button class="burger-menu" onclick="toggleMenu()">☰</button>
|
||||
<ul class="menu">
|
||||
<li><a href="../games.html">Games</a></li>
|
||||
<li><a href="../general.html">General</a></li>
|
||||
<li><a href="../tools.html">Tools</a></li>
|
||||
<li><a href="../media.html">Multimedia</a></li>
|
||||
<li><a href="../os.html">OS</a></li>
|
||||
<li><a href="../social-media.html">Social media</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</header>
|
||||
<article>
|
||||
<h1>5/5</h1>
|
||||
<ul class="fiveStar">
|
||||
<li>Audacity</li>
|
||||
</ul>
|
||||
</article>
|
||||
<script>
|
||||
function toggleMenu() {
|
||||
const menu = document.querySelector(".menu");
|
||||
menu.classList.toggle("active");
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
38
FOOS_ALT_WEBSITE/multimedia/image_editing.html
Normal file
38
FOOS_ALT_WEBSITE/multimedia/image_editing.html
Normal file
|
@ -0,0 +1,38 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>FOSS Alternative</title>
|
||||
<link rel="stylesheet" href="../list.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="header-content">
|
||||
<div class="project-name"><a href="../index.html">FOSS alternative</a></div>
|
||||
<button class="burger-menu" onclick="toggleMenu()">☰</button>
|
||||
<ul class="menu">
|
||||
<li><a href="../games.html">Games</a></li>
|
||||
<li><a href="../general.html">General</a></li>
|
||||
<li><a href="../tools.html">Tools</a></li>
|
||||
<li><a href="../media.html">Multimedia</a></li>
|
||||
<li><a href="../os.html">OS</a></li>
|
||||
<li><a href="../social-media.html">Social media</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</header>
|
||||
<article>
|
||||
<h1>5/5</h1>
|
||||
<ul class="fiveStar">
|
||||
<li>GIMP</li>
|
||||
</ul>
|
||||
</article>
|
||||
<script>
|
||||
function toggleMenu() {
|
||||
const menu = document.querySelector(".menu");
|
||||
menu.classList.toggle("active");
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
42
FOOS_ALT_WEBSITE/multimedia/media_player.html
Normal file
42
FOOS_ALT_WEBSITE/multimedia/media_player.html
Normal file
|
@ -0,0 +1,42 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>FOSS Alternative</title>
|
||||
<link rel="stylesheet" href="../list.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="header-content">
|
||||
<div class="project-name"><a href="../index.html">FOSS alternative</a></div>
|
||||
<button class="burger-menu" onclick="toggleMenu()">☰</button>
|
||||
<ul class="menu">
|
||||
<li><a href="../games.html">Games</a></li>
|
||||
<li><a href="../general.html">General</a></li>
|
||||
<li><a href="../tools.html">Tools</a></li>
|
||||
<li><a href="../media.html">Multimedia</a></li>
|
||||
<li><a href="../os.html">OS</a></li>
|
||||
<li><a href="../social-media.html">Social media</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</header>
|
||||
<article>
|
||||
<h1>5/5</h1>
|
||||
<ul class="fiveStar">
|
||||
<li>VLC</li>
|
||||
</ul>
|
||||
<h1>3/5</h1>
|
||||
<ul class="threeStar">
|
||||
<li>MPV</li>
|
||||
</ul>
|
||||
</article>
|
||||
<script>
|
||||
function toggleMenu() {
|
||||
const menu = document.querySelector(".menu");
|
||||
menu.classList.toggle("active");
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
42
FOOS_ALT_WEBSITE/multimedia/multimedia_frontend.html
Normal file
42
FOOS_ALT_WEBSITE/multimedia/multimedia_frontend.html
Normal file
|
@ -0,0 +1,42 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>FOSS Alternative</title>
|
||||
<link rel="stylesheet" href="../list.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="header-content">
|
||||
<div class="project-name"><a href="../index.html">FOSS alternative</a></div>
|
||||
<button class="burger-menu" onclick="toggleMenu()">☰</button>
|
||||
<ul class="menu">
|
||||
<li><a href="../games.html">Games</a></li>
|
||||
<li><a href="../general.html">General</a></li>
|
||||
<li><a href="../tools.html">Tools</a></li>
|
||||
<li><a href="../media.html">Multimedia</a></li>
|
||||
<li><a href="../os.html">OS</a></li>
|
||||
<li><a href="../social-media.html">Social media</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</header>
|
||||
<article>
|
||||
<h1>5/5</h1>
|
||||
<ul class="fiveStar">
|
||||
<li>Kodi</li>
|
||||
</ul>
|
||||
<h1>3/5</h1>
|
||||
<ul class="threeStar">
|
||||
<li>Jellyfin</li>
|
||||
</ul>
|
||||
</article>
|
||||
<script>
|
||||
function toggleMenu() {
|
||||
const menu = document.querySelector(".menu");
|
||||
menu.classList.toggle("active");
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
42
FOOS_ALT_WEBSITE/multimedia/painting.html
Normal file
42
FOOS_ALT_WEBSITE/multimedia/painting.html
Normal file
|
@ -0,0 +1,42 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>FOSS Alternative</title>
|
||||
<link rel="stylesheet" href="../list.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="header-content">
|
||||
<div class="project-name"><a href="../index.html">FOSS alternative</a></div>
|
||||
<button class="burger-menu" onclick="toggleMenu()">☰</button>
|
||||
<ul class="menu">
|
||||
<li><a href="../games.html">Games</a></li>
|
||||
<li><a href="../general.html">General</a></li>
|
||||
<li><a href="../tools.html">Tools</a></li>
|
||||
<li><a href="../media.html">Multimedia</a></li>
|
||||
<li><a href="../os.html">OS</a></li>
|
||||
<li><a href="../social-media.html">Social media</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</header>
|
||||
<article>
|
||||
<h1>5/5</h1>
|
||||
<ul class="fiveStar">
|
||||
<li>Krita</li>
|
||||
</ul>
|
||||
<h1>3/5</h1>
|
||||
<ul class="threeStar">
|
||||
<li>Inkscape</li>
|
||||
</ul>
|
||||
</article>
|
||||
<script>
|
||||
function toggleMenu() {
|
||||
const menu = document.querySelector(".menu");
|
||||
menu.classList.toggle("active");
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
38
FOOS_ALT_WEBSITE/multimedia/photo_editing.html
Normal file
38
FOOS_ALT_WEBSITE/multimedia/photo_editing.html
Normal file
|
@ -0,0 +1,38 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>FOSS Alternative</title>
|
||||
<link rel="stylesheet" href="../list.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="header-content">
|
||||
<div class="project-name"><a href="../index.html">FOSS alternative</a></div>
|
||||
<button class="burger-menu" onclick="toggleMenu()">☰</button>
|
||||
<ul class="menu">
|
||||
<li><a href="../games.html">Games</a></li>
|
||||
<li><a href="../general.html">General</a></li>
|
||||
<li><a href="../tools.html">Tools</a></li>
|
||||
<li><a href="../media.html">Multimedia</a></li>
|
||||
<li><a href="../os.html">OS</a></li>
|
||||
<li><a href="../social-media.html">Social media</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</header>
|
||||
<article>
|
||||
<h1>5/5</h1>
|
||||
<ul class="fiveStar">
|
||||
<li>GIMP</li>
|
||||
</ul>
|
||||
</article>
|
||||
<script>
|
||||
function toggleMenu() {
|
||||
const menu = document.querySelector(".menu");
|
||||
menu.classList.toggle("active");
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
42
FOOS_ALT_WEBSITE/multimedia/photo_processing.html
Normal file
42
FOOS_ALT_WEBSITE/multimedia/photo_processing.html
Normal file
|
@ -0,0 +1,42 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>FOSS Alternative</title>
|
||||
<link rel="stylesheet" href="../list.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="header-content">
|
||||
<div class="project-name"><a href="../index.html">FOSS alternative</a></div>
|
||||
<button class="burger-menu" onclick="toggleMenu()">☰</button>
|
||||
<ul class="menu">
|
||||
<li><a href="../games.html">Games</a></li>
|
||||
<li><a href="../general.html">General</a></li>
|
||||
<li><a href="../tools.html">Tools</a></li>
|
||||
<li><a href="../media.html">Multimedia</a></li>
|
||||
<li><a href="../os.html">OS</a></li>
|
||||
<li><a href="../social-media.html">Social media</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</header>
|
||||
<article>
|
||||
<h1>5/5</h1>
|
||||
<ul class="fiveStar">
|
||||
<li>Darktable</li>
|
||||
</ul>
|
||||
<h1>3/5</h1>
|
||||
<ul class="threeStar">
|
||||
<li>RawTherapee</li>
|
||||
</ul>
|
||||
</article>
|
||||
<script>
|
||||
function toggleMenu() {
|
||||
const menu = document.querySelector(".menu");
|
||||
menu.classList.toggle("active");
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
42
FOOS_ALT_WEBSITE/multimedia/recording.html
Normal file
42
FOOS_ALT_WEBSITE/multimedia/recording.html
Normal file
|
@ -0,0 +1,42 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>FOSS Alternative</title>
|
||||
<link rel="stylesheet" href="../list.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="header-content">
|
||||
<div class="project-name"><a href="../index.html">FOSS alternative</a></div>
|
||||
<button class="burger-menu" onclick="toggleMenu()">☰</button>
|
||||
<ul class="menu">
|
||||
<li><a href="../games.html">Games</a></li>
|
||||
<li><a href="../general.html">General</a></li>
|
||||
<li><a href="../tools.html">Tools</a></li>
|
||||
<li><a href="../media.html">Multimedia</a></li>
|
||||
<li><a href="../os.html">OS</a></li>
|
||||
<li><a href="../social-media.html">Social media</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</header>
|
||||
<article>
|
||||
<h1>5/5</h1>
|
||||
<ul class="fiveStar">
|
||||
<li>OBS Studio</li>
|
||||
</ul>
|
||||
<h1>4/5</h1>
|
||||
<ul class="fourStar">
|
||||
<li>ShareX</li>
|
||||
</ul>
|
||||
</article>
|
||||
<script>
|
||||
function toggleMenu() {
|
||||
const menu = document.querySelector(".menu");
|
||||
menu.classList.toggle("active");
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
42
FOOS_ALT_WEBSITE/multimedia/video_editors.html
Normal file
42
FOOS_ALT_WEBSITE/multimedia/video_editors.html
Normal file
|
@ -0,0 +1,42 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>FOSS Alternative</title>
|
||||
<link rel="stylesheet" href="../list.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="header-content">
|
||||
<div class="project-name"><a href="../index.html">FOSS alternative</a></div>
|
||||
<button class="burger-menu" onclick="toggleMenu()">☰</button>
|
||||
<ul class="menu">
|
||||
<li><a href="../games.html">Games</a></li>
|
||||
<li><a href="../general.html">General</a></li>
|
||||
<li><a href="../tools.html">Tools</a></li>
|
||||
<li><a href="../media.html">Multimedia</a></li>
|
||||
<li><a href="../os.html">OS</a></li>
|
||||
<li><a href="../social-media.html">Social media</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</header>
|
||||
<article>
|
||||
<h1>5/5</h1>
|
||||
<ul class="fiveStar">
|
||||
<li>Kdenlive</li>
|
||||
</ul>
|
||||
<h1>4/5</h1>
|
||||
<ul class="fourStar">
|
||||
<li>Shotcut</li>
|
||||
</ul>
|
||||
</article>
|
||||
<script>
|
||||
function toggleMenu() {
|
||||
const menu = document.querySelector(".menu");
|
||||
menu.classList.toggle("active");
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
66
FOOS_ALT_WEBSITE/operating_systems/desktop.html
Normal file
66
FOOS_ALT_WEBSITE/operating_systems/desktop.html
Normal file
|
@ -0,0 +1,66 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>FOSS Alternative</title>
|
||||
<link rel="stylesheet" href="../list.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="header-content">
|
||||
<div class="project-name"><a href="../index.html">FOSS alternative</a></div>
|
||||
<button class="burger-menu" onclick="toggleMenu()">☰</button>
|
||||
<ul class="menu">
|
||||
<li><a href="../games.html">Games</a></li>
|
||||
<li><a href="../general.html">General</a></li>
|
||||
<li><a href="../tools.html">Tools</a></li>
|
||||
<li><a href="../media.html">Multimedia</a></li>
|
||||
<li><a href="../os.html">OS</a></li>
|
||||
<li><a href="../social-media.html">Social media</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</header>
|
||||
<article>
|
||||
<h1>GNU/Linux Based</h1>
|
||||
<h1>5/5</h1>
|
||||
<ul class="fiveStar">
|
||||
<li>Linux Mint</li>
|
||||
</ul>
|
||||
<h1>4/5</h1>
|
||||
<ul class="fourStar">
|
||||
<li>Ubuntu</li>
|
||||
<li>Zorin OS</li>
|
||||
<li>Pop!_OS</li>
|
||||
<li>openSUSE Leap</li>
|
||||
</ul>
|
||||
<h1>3/5</h1>
|
||||
<ul class="threeStar">
|
||||
<li>Fedora</li>
|
||||
<li>elementary OS</li>
|
||||
<li>openSUSE Tumbleweed</li>
|
||||
<li>ThoriumOS</li>
|
||||
</ul>
|
||||
<h1>2/5</h1>
|
||||
<ul class="twoStar">
|
||||
<li>Debian</li>
|
||||
</ul>
|
||||
<h1>1/5</h1>
|
||||
<ul class="oneStar">
|
||||
<li>Trisquel</li>
|
||||
</ul>
|
||||
<h1>Andriod Based</h1>
|
||||
<h1>2/5</h1>
|
||||
<ul class="twoStar">
|
||||
<li>Bliss OS</li>
|
||||
</ul>
|
||||
</article>
|
||||
<script>
|
||||
function toggleMenu() {
|
||||
const menu = document.querySelector(".menu");
|
||||
menu.classList.toggle("active");
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
65
FOOS_ALT_WEBSITE/operating_systems/mobile.html
Normal file
65
FOOS_ALT_WEBSITE/operating_systems/mobile.html
Normal file
|
@ -0,0 +1,65 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>FOSS Alternative</title>
|
||||
<link rel="stylesheet" href="../list.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="header-content">
|
||||
<div class="project-name"><a href="../index.html">FOSS alternative</a></div>
|
||||
<button class="burger-menu" onclick="toggleMenu()">☰</button>
|
||||
<ul class="menu">
|
||||
<li><a href="../games.html">Games</a></li>
|
||||
<li><a href="../general.html">General</a></li>
|
||||
<li><a href="../tools.html">Tools</a></li>
|
||||
<li><a href="../media.html">Multimedia</a></li>
|
||||
<li><a href="../os.html">OS</a></li>
|
||||
<li><a href="../social-media.html">Social media</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</header>
|
||||
<article>
|
||||
<h1>AOSP Base</h1>
|
||||
<h1>5/5</h1>
|
||||
<ul class="fiveStar">
|
||||
<li>Volla OS</li>
|
||||
</ul>
|
||||
<h1>4/5</h1>
|
||||
<ul class="fourStar">
|
||||
<li>/e/OS</li>
|
||||
<li>CalyxOS</li>
|
||||
<li>GrapheneOS</li>
|
||||
</ul>
|
||||
<h1>3/5</h1>
|
||||
<ul class="threeStar">
|
||||
<li>LineageOS + microG</li>
|
||||
</ul>
|
||||
<h1>2/5</h1>
|
||||
<ul class="twoStar">
|
||||
<li>LineageOS</li>
|
||||
</ul>
|
||||
<h1>1/5</h1>
|
||||
<ul class="oneStar">
|
||||
<li>Replicant</li>
|
||||
</ul>
|
||||
<h1>GNU/Linux Based</h1>
|
||||
<h1>2/5</h1>
|
||||
<ul class="twoStar">
|
||||
<li>Ubuntu Touch</li>
|
||||
</ul>
|
||||
<ul class="oneStar">
|
||||
<li>postmarketOS</li>
|
||||
</ul>
|
||||
</article>
|
||||
<script>
|
||||
function toggleMenu() {
|
||||
const menu = document.querySelector(".menu");
|
||||
menu.classList.toggle("active");
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
43
FOOS_ALT_WEBSITE/os.html
Normal file
43
FOOS_ALT_WEBSITE/os.html
Normal file
|
@ -0,0 +1,43 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>FOSS Alternatives</title>
|
||||
<link rel="stylesheet" href="styles.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="header-content">
|
||||
<div class="project-name"><a href="index.html">FOSS alternative</a></div>
|
||||
<button class="burger-menu" onclick="toggleMenu()">☰</button>
|
||||
<ul class="menu">
|
||||
<li><a href="games.html">Games</a></li>
|
||||
<li><a href="general.html">General</a></li>
|
||||
<li><a href="tools.html">Tools</a></li>
|
||||
<li><a href="media.html">Multimedia</a></li>
|
||||
<li><a href="os.html">OS</a></li>
|
||||
<li><a href="social-media.html">Social media</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</header>
|
||||
<article>
|
||||
<nav>
|
||||
<ul class="folder-list">
|
||||
<li class="folder-list-item">
|
||||
<a class="folder-link" href="operating_systems/mobile.html">Mobile</a>
|
||||
</li>
|
||||
<li class="folder-list-item">
|
||||
<a class="folder-link" href="operating_systems/desktop.html">Desktop</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</article>
|
||||
<script>
|
||||
function toggleMenu() {
|
||||
const menu = document.querySelector(".menu");
|
||||
menu.classList.toggle("active");
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
49
FOOS_ALT_WEBSITE/social-media.html
Normal file
49
FOOS_ALT_WEBSITE/social-media.html
Normal file
|
@ -0,0 +1,49 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>FOSS Alternatives</title>
|
||||
<link rel="stylesheet" href="styles.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="header-content">
|
||||
<div class="project-name"><a href="index.html">FOSS alternative</a></div>
|
||||
<button class="burger-menu" onclick="toggleMenu()">☰</button>
|
||||
<ul class="menu">
|
||||
<li><a href="games.html">Games</a></li>
|
||||
<li><a href="general.html">General</a></li>
|
||||
<li><a href="tools.html">Tools</a></li>
|
||||
<li><a href="media.html">Multimedia</a></li>
|
||||
<li><a href="os.html">OS</a></li>
|
||||
<li><a href="social-media.html">Social media</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</header>
|
||||
<article>
|
||||
<nav>
|
||||
<ul class="folder-list">
|
||||
<li class="folder-list-item">
|
||||
<a class="folder-link" href="social_platforms/irc_clients.html">IRC Clients</a>
|
||||
</li>
|
||||
<li class="folder-list-item">
|
||||
<a class="folder-link" href="social_platforms/matrix_clients.html">Matrix Clients</a>
|
||||
</li>
|
||||
<li class="folder-list-item">
|
||||
<a class="folder-link" href="social_platforms/signal_clients.html">Signal Clients</a>
|
||||
</li>
|
||||
<li class="folder-list-item">
|
||||
<a class="folder-link" href="social_platforms/other_platforms.html">Other Platforms</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</article>
|
||||
<script>
|
||||
function toggleMenu() {
|
||||
const menu = document.querySelector(".menu");
|
||||
menu.classList.toggle("active");
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
42
FOOS_ALT_WEBSITE/social_platforms/irc_clients.html
Normal file
42
FOOS_ALT_WEBSITE/social_platforms/irc_clients.html
Normal file
|
@ -0,0 +1,42 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>FOSS Alternative</title>
|
||||
<link rel="stylesheet" href="../list.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="header-content">
|
||||
<div class="project-name"><a href="../index.html">FOSS alternative</a></div>
|
||||
<button class="burger-menu" onclick="toggleMenu()">☰</button>
|
||||
<ul class="menu">
|
||||
<li><a href="../games.html">Games</a></li>
|
||||
<li><a href="../general.html">General</a></li>
|
||||
<li><a href="../tools.html">Tools</a></li>
|
||||
<li><a href="../media.html">Multimedia</a></li>
|
||||
<li><a href="../os.html">OS</a></li>
|
||||
<li><a href="../social-media.html">Social media</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</header>
|
||||
<article>
|
||||
<h1>5/5</h1>
|
||||
<ul class="fiveStar">
|
||||
<li>HexChat</li>
|
||||
</ul>
|
||||
<h1>4/5</h1>
|
||||
<ul class="fourStar">
|
||||
<li>KiwiIRC</li>
|
||||
</ul>
|
||||
</article>
|
||||
<script>
|
||||
function toggleMenu() {
|
||||
const menu = document.querySelector(".menu");
|
||||
menu.classList.toggle("active");
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
46
FOOS_ALT_WEBSITE/social_platforms/matrix_clients.html
Normal file
46
FOOS_ALT_WEBSITE/social_platforms/matrix_clients.html
Normal file
|
@ -0,0 +1,46 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>FOSS Alternative</title>
|
||||
<link rel="stylesheet" href="../list.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="header-content">
|
||||
<div class="project-name"><a href="../index.html">FOSS alternative</a></div>
|
||||
<button class="burger-menu" onclick="toggleMenu()">☰</button>
|
||||
<ul class="menu">
|
||||
<li><a href="../games.html">Games</a></li>
|
||||
<li><a href="../general.html">General</a></li>
|
||||
<li><a href="../tools.html">Tools</a></li>
|
||||
<li><a href="../media.html">Multimedia</a></li>
|
||||
<li><a href="../os.html">OS</a></li>
|
||||
<li><a href="../social-media.html">Social media</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</header>
|
||||
<article>
|
||||
<h1>5/5</h1>
|
||||
<ul class="fiveStar">
|
||||
<li>Element</li>
|
||||
</ul>
|
||||
<h1>4/5</h1>
|
||||
<ul class="fourStar">
|
||||
<li>FluffyChat</li>
|
||||
</ul>
|
||||
<h1>3/5</h1>
|
||||
<ul class="threeStar">
|
||||
<li>Cinny</li>
|
||||
</ul>
|
||||
</article>
|
||||
<script>
|
||||
function toggleMenu() {
|
||||
const menu = document.querySelector(".menu");
|
||||
menu.classList.toggle("active");
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
47
FOOS_ALT_WEBSITE/social_platforms/other_platforms.html
Normal file
47
FOOS_ALT_WEBSITE/social_platforms/other_platforms.html
Normal file
|
@ -0,0 +1,47 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>FOSS Alternative</title>
|
||||
<link rel="stylesheet" href="../list.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="header-content">
|
||||
<div class="project-name"><a href="../index.html">FOSS alternative</a></div>
|
||||
<button class="burger-menu" onclick="toggleMenu()">☰</button>
|
||||
<ul class="menu">
|
||||
<li><a href="../games.html">Games</a></li>
|
||||
<li><a href="../general.html">General</a></li>
|
||||
<li><a href="../tools.html">Tools</a></li>
|
||||
<li><a href="../media.html">Multimedia</a></li>
|
||||
<li><a href="../os.html">OS</a></li>
|
||||
<li><a href="../social-media.html">Social media</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</header>
|
||||
<article>
|
||||
<h1>5/5</h1>
|
||||
<ul class="fiveStar">
|
||||
<li>Mastodon</li>
|
||||
</ul>
|
||||
<h1>4/5</h1>
|
||||
<ul class="fourStar">
|
||||
<li>Lemmy</li>
|
||||
</ul>
|
||||
<h1>3/5</h1>
|
||||
<ul class="threeStar">
|
||||
<li>Pixelfed</li>
|
||||
<li>Friendica</li>
|
||||
</ul>
|
||||
</article>
|
||||
<script>
|
||||
function toggleMenu() {
|
||||
const menu = document.querySelector(".menu");
|
||||
menu.classList.toggle("active");
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
46
FOOS_ALT_WEBSITE/social_platforms/signal_clients.html
Normal file
46
FOOS_ALT_WEBSITE/social_platforms/signal_clients.html
Normal file
|
@ -0,0 +1,46 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>FOSS Alternative</title>
|
||||
<link rel="stylesheet" href="../list.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="header-content">
|
||||
<div class="project-name"><a href="../index.html">FOSS alternative</a></div>
|
||||
<button class="burger-menu" onclick="toggleMenu()">☰</button>
|
||||
<ul class="menu">
|
||||
<li><a href="../games.html">Games</a></li>
|
||||
<li><a href="../general.html">General</a></li>
|
||||
<li><a href="../tools.html">Tools</a></li>
|
||||
<li><a href="../media.html">Multimedia</a></li>
|
||||
<li><a href="../os.html">OS</a></li>
|
||||
<li><a href="../social-media.html">Social media</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</header>
|
||||
<article>
|
||||
<h1>5/5</h1>
|
||||
<ul class="fiveStar">
|
||||
<li>Signal</li>
|
||||
</ul>
|
||||
<h1>4/5</h1>
|
||||
<ul class="fourStar">
|
||||
<li>Molly</li>
|
||||
</ul>
|
||||
<h1>3/5</h1>
|
||||
<ul class="threeStar">
|
||||
<li>Session</li>
|
||||
</ul>
|
||||
</article>
|
||||
<script>
|
||||
function toggleMenu() {
|
||||
const menu = document.querySelector(".menu");
|
||||
menu.classList.toggle("active");
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
214
FOOS_ALT_WEBSITE/styles.css
Normal file
214
FOOS_ALT_WEBSITE/styles.css
Normal file
|
@ -0,0 +1,214 @@
|
|||
/* Reset and global styles */
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
|
||||
transition: 1s;
|
||||
}
|
||||
|
||||
/* Body styles */
|
||||
body {
|
||||
background-color: #f5f5f5;
|
||||
background-image: url("assets/");
|
||||
background-repeat: no-repeat;
|
||||
background-size: cover;
|
||||
background-position: center;
|
||||
background-attachment: fixed;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
min-height: 100vh;
|
||||
}
|
||||
|
||||
/* Header styles */
|
||||
header {
|
||||
background-color: rgba(0, 0, 0, 0.7);
|
||||
padding: 10px;
|
||||
width: 100%;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
z-index: 1000;
|
||||
}
|
||||
|
||||
.header-content {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.project-name {
|
||||
color: white;
|
||||
font-size: 1.5em;
|
||||
}
|
||||
|
||||
.burger-menu {
|
||||
background: none;
|
||||
border: none;
|
||||
color: white;
|
||||
font-size: 1.5em;
|
||||
cursor: pointer;
|
||||
display: none;
|
||||
}
|
||||
|
||||
.menu {
|
||||
list-style: none;
|
||||
display: flex;
|
||||
justify-content: space-around;
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
header li {
|
||||
margin: 0 10px;
|
||||
}
|
||||
|
||||
header a {
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
padding: 10px;
|
||||
border-radius: 5px;
|
||||
transition: background-color 0.3s ease;
|
||||
}
|
||||
|
||||
header a:hover {
|
||||
background-color: rgba(255, 255, 255, 0.2);
|
||||
}
|
||||
|
||||
/* Article styles */
|
||||
article {
|
||||
margin-top: 100px;
|
||||
margin-bottom: 50px;
|
||||
padding: 20px;
|
||||
width: 90%;
|
||||
max-width: 800px;
|
||||
background: rgba(255, 255, 255, 0.9);
|
||||
border-radius: 10px;
|
||||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
h1 {
|
||||
color: #333;
|
||||
margin-bottom: 20px;
|
||||
font-size: 2em;
|
||||
}
|
||||
|
||||
p.text {
|
||||
color: #666;
|
||||
line-height: 1.2;
|
||||
margin-bottom: 20px;
|
||||
font-size: 1em;
|
||||
}
|
||||
|
||||
img {
|
||||
max-width: 100%;
|
||||
height: auto;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
button {
|
||||
padding: 10px 20px;
|
||||
margin: 2em;
|
||||
border: none;
|
||||
background-color: #333;
|
||||
color: white;
|
||||
border-radius: 5px;
|
||||
cursor: pointer;
|
||||
transition: background-color 0.3s ease;
|
||||
}
|
||||
|
||||
button:hover {
|
||||
background-color: #555;
|
||||
}
|
||||
|
||||
.flex {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
nav {
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.folder-list {
|
||||
list-style-type: none;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.folder-list-item {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.folder-link {
|
||||
text-decoration: none;
|
||||
color: #eee8e8;
|
||||
font-weight: bold;
|
||||
display: block;
|
||||
padding: 10px;
|
||||
border-radius: 5px;
|
||||
background: linear-gradient(to right, #000000, #707070); /* Gradient background */
|
||||
}
|
||||
|
||||
.folder-link:hover {
|
||||
background: linear-gradient(to right, #707070, #000000); /* Gradient change on hover */
|
||||
}
|
||||
|
||||
.folder-link:active {
|
||||
transform: scale(0.98); /* Slight scale down on click */
|
||||
}
|
||||
|
||||
/* Mobile Styles */
|
||||
@media (max-width: 1000px) {
|
||||
.burger-menu {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.menu {
|
||||
display: none;
|
||||
flex-direction: column;
|
||||
background-color: rgba(0, 0, 0, 0.7);
|
||||
position: absolute;
|
||||
top: 100%; /* Adjusted position */
|
||||
left: 0;
|
||||
width: 100%;
|
||||
z-index: 999;
|
||||
}
|
||||
|
||||
.menu.active {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
header {
|
||||
padding: 5px;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.header-content {
|
||||
flex-direction: row;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.project-name {
|
||||
font-size: 1.2em;
|
||||
}
|
||||
|
||||
header li {
|
||||
margin: 0;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
header a {
|
||||
padding: 10px;
|
||||
width: 100%;
|
||||
display: block;
|
||||
}
|
||||
|
||||
article {
|
||||
margin-top: 190px;
|
||||
padding-top: 20px;
|
||||
}
|
||||
}
|
46
FOOS_ALT_WEBSITE/tools.html
Normal file
46
FOOS_ALT_WEBSITE/tools.html
Normal file
|
@ -0,0 +1,46 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>FOSS Alternatives</title>
|
||||
<link rel="stylesheet" href="styles.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="header-content">
|
||||
<div class="project-name"><a href="index.html">FOSS alternative</a></div>
|
||||
<button class="burger-menu" onclick="toggleMenu()">☰</button>
|
||||
<ul class="menu">
|
||||
<li><a href="games.html">Games</a></li>
|
||||
<li><a href="general.html">General</a></li>
|
||||
<li><a href="tools.html">Tools</a></li>
|
||||
<li><a href="media.html">Multimedia</a></li>
|
||||
<li><a href="os.html">OS</a></li>
|
||||
<li><a href="social-media.html">Social media</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</header>
|
||||
<article>
|
||||
<nav>
|
||||
<ul class="folder-list">
|
||||
<li class="folder-list-item">
|
||||
<a class="folder-link" href="internet_tools/browsers.html">Browser</a>
|
||||
</li>
|
||||
<li class="folder-list-item">
|
||||
<a class="folder-link" href="internet_tools/mail_clients.html">Mail</a>
|
||||
</li>
|
||||
<li class="folder-list-item">
|
||||
<a class="folder-link" href="internet_tools//search_engines.html">Search egine</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</article>
|
||||
<script>
|
||||
function toggleMenu() {
|
||||
const menu = document.querySelector(".menu");
|
||||
menu.classList.toggle("active");
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in a new issue