Files
WebTechnologiak-vizsga/2019-20-2-03/Megoldás/index.html
2024-12-07 14:05:27 +01:00

43 lines
1.1 KiB
HTML

<!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>