36 lines
1.0 KiB
HTML
36 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="hu">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="keywords" content="vasút, menetrend, vonat, járat">
|
|
<title>Menetrend</title>
|
|
<link rel="stylesheet" href="./style.css">
|
|
</head>
|
|
|
|
<body>
|
|
<article>
|
|
<h1>Vasúti járatkereső</h1>
|
|
|
|
<section class="tajekoztato">
|
|
<h2>Utazási adatok megadása</h2>
|
|
<p>Adja meg, <em>honnan, és hova</em>...</p>
|
|
<form>
|
|
<label for="honnan">Honnan: </label>
|
|
<select name="" id="honnan">
|
|
</select>
|
|
<br>
|
|
<label for="hova">Hova: </label>
|
|
<select name="" id="hova">
|
|
</select>
|
|
<br>
|
|
<button onclick="search(event)" type="submit">Keresés</button>
|
|
</form>
|
|
</section>
|
|
</article>
|
|
<script src="vonat.js"></script>
|
|
<script src="./script.js"></script>
|
|
</body>
|
|
|
|
</html> |