Added the multimedia section
This commit is contained in:
parent
f717b6323f
commit
35239e2b6b
19 changed files with 407 additions and 37 deletions
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="index.html">Home</a></li>
|
||||
<li><a href="features.html">Features</a></li>
|
||||
<li><a href="downloads.html">Downloads</a></li>
|
||||
<li><a href="community.html">Community</a></li>
|
||||
<li><a href="support.html">Support</a></li>
|
||||
<li><a href="about.html">About</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>
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue