Tizenegyedik vizsga

This commit is contained in:
2024-12-07 14:05:27 +01:00
parent 67b4ebac28
commit 06feade18d
8 changed files with 67 additions and 0 deletions

Binary file not shown.

View 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">
<meta name="author" content="Gosztolya Máté">
<title>Lemezek</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<h1><a href="https://musicbrainz.org/" target="_blank">Lemezek</a></h1>
<form action="">
<fieldset>
<legend>Válasszon albumot</legend>
<input type="radio" name="choice" id="SubBass">
<label for="SubBass">Sub Bass Monster - Fekete lemez</label>
<input type="radio" name="choice" id="Dynatron">
<label for="Dynatron">Dynatron - The Rigel Axiom</label>
</fieldset>
</form>
<table>
<tr id="header">
<th>
sorszám
</th>
<th>
cím
</th>
<th>
előadó
</th>
<th>
hossz
</th>
</tr>
</table>
<script src="./script.js"></script>
</body>
</html>

View File

@ -0,0 +1 @@
//A fájl nemlett mellékelve, így csak a Jó Isten tudja, hogy kell megoldani!(Mert még a tanár maga sem tudja)

View File

@ -0,0 +1,23 @@
form {
margin-bottom: 20px;
width: fit-content;
}
th {
text-align: left;
}
table {
border-collapse: collapse;
border: 2px ridge gray;
}
td,
th {
margin: 5px;
}
#sorszam,
#cim {
font-style: italic;
}