Lekcja 2
This commit is contained in:
217
zad6.html
Normal file
217
zad6.html
Normal file
@@ -0,0 +1,217 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='utf-8'>
|
||||
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
|
||||
<title>Zadanie 6</title>
|
||||
<meta name='viewport' content='width=device-width, initial-scale=1'>
|
||||
<link rel="icon" href="/favicon.ico">
|
||||
<link rel='stylesheet' type='text/css' media='screen' href='/assets/css/styl.css'>
|
||||
<link rel='stylesheet' type='text/css' media='screen' href='/assets/css/blog.css'>
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<h1>Zadanie 6</h1>
|
||||
<nav>
|
||||
<a href="./zad1.html">Zadanie 1</a>
|
||||
<a href="./zad2.html">Zadanie 2</a>
|
||||
<a href="./zad3.html">Zadanie 3</a>
|
||||
<a href="./zad4.html">Zadanie 4</a>
|
||||
<a href="./zad5.html">Zadanie 5</a>
|
||||
<a href="./zad6.html">Zadanie 6</a>
|
||||
</nav>
|
||||
</header>
|
||||
<section>
|
||||
<main>
|
||||
<article>
|
||||
<h4>Zadanie 1</h4>
|
||||
<form method="get" action="zad6.html">
|
||||
<button type="submit">Wyślij</button>
|
||||
</form>
|
||||
</article>
|
||||
<article>
|
||||
<h4>Zadanie 2</h4>
|
||||
<form method="get" action="zad6.html">
|
||||
<div>
|
||||
<label for="imie">Imię</label>
|
||||
<input id="imie" name="imie" type="text" required placeholder="Wpisz imię">
|
||||
</div>
|
||||
<div>
|
||||
<label for="nazwisko">Nazwisko</label>
|
||||
<input id="nazwisko" name="nazwisko" type="text" required placeholder="Wpisz nazwisko">
|
||||
</div>
|
||||
<div>
|
||||
<label for="email">E-mail</label>
|
||||
<input id="email" name="email" type="email" required placeholder="np. ala@szkola.pl" autocomplete="email">
|
||||
</div>
|
||||
|
||||
<button type="submit">Wyślij</button>
|
||||
</form>
|
||||
</article>
|
||||
<article>
|
||||
<h4>Zadanie 3</h4>
|
||||
<form method="get" action="zad6.html">
|
||||
<div>
|
||||
<label for="nazwa_kontaktu"></label>
|
||||
<input id="nazwa_kontaktu" name="nazwa_kontaktu" type="text" title="Kto?" placeholder="Nazwa kontaktu">
|
||||
</div>
|
||||
<div>
|
||||
<label for="telefon">Telefon</label>
|
||||
<input id="telefon" name="telefon" type="tel" pattern="\d{9}" title="Wpisz dokładnie 9 cyfr" placeholder="np. 501234567" inputmode="numeric">
|
||||
</div>
|
||||
<div>
|
||||
<label for="miasto">Miasto</label>
|
||||
<input id="miasto" required maxlength="40" placeholder="Wpisz nazwę miasta">
|
||||
</div>
|
||||
|
||||
<button type="submit">Wyślij</button>
|
||||
</form>
|
||||
</article>
|
||||
<article>
|
||||
<h4>Zadanie 4</h4>
|
||||
<form method="get" action="zad6.html">
|
||||
<div>
|
||||
<label for="haslo">Hasło</label>
|
||||
<input id="haslo" name="haslo" type="password" required minlength="8" placeholder="min. 8 znaków">
|
||||
</div>
|
||||
<div>
|
||||
<label for="phaslo">Powtórz Hasło</label>
|
||||
<input id="phaslo" name="phaslo" type="password" required minlength="8" placeholder="min. 8 znaków">
|
||||
</div>
|
||||
<div>
|
||||
<label for="wiek">Wiek</label>
|
||||
<input id="wiek" name="wiek" type="number" min="10" max="120" step="1" placeholder="np. 16">
|
||||
</div>
|
||||
<div>
|
||||
<label for="sztuki">Liczba sztuk</label>
|
||||
<input id="sztuki" name="sztuka" type="number" min="1" max="10" step="1" required>
|
||||
</div>
|
||||
|
||||
<button type="submit">Wyślij</button>
|
||||
</form>
|
||||
</article>
|
||||
<article>
|
||||
<h4>Zadanie 5</h4>
|
||||
<form method="get" action="zad6.html">
|
||||
<fieldset>
|
||||
<legend>Sposób dostawy</legend>
|
||||
<div>
|
||||
<input type="radio" id="d-paczkomat" name="dostawa" value="paczkomat" checked>
|
||||
<label for="d-paczkomat">Paczkomat</label>
|
||||
</div>
|
||||
<div>
|
||||
<input type="radio" id="d-kurier" name="dostawa" value="kurier">
|
||||
<label for="d-kurier">Kurier</label>
|
||||
</div>
|
||||
<div>
|
||||
<input type="radio" id="d-golab" name="dostawa" value="golab">
|
||||
<label for="d-golab">Gołąb pocztowy</label>
|
||||
</div>
|
||||
<div>
|
||||
<input type="radio" id="d-dron" name="dostawa" value="dron">
|
||||
<label for="d-dron" title="Dokładniej Hadid 110">Dron</label>
|
||||
</div>
|
||||
</fieldset>
|
||||
<fieldset>
|
||||
<legend>Płeć</legend>
|
||||
<div>
|
||||
<input type="radio" id="p-m" name="plec" value="p">
|
||||
<label for="p-m">Mężczyzna</label>
|
||||
</div>
|
||||
<div>
|
||||
<input type="radio" id="p-k" name="plec" value="k">
|
||||
<label for="p-k">Kobieta</label>
|
||||
</div>
|
||||
<div>
|
||||
<input type="radio" id="p-h" name="plec" value="h">
|
||||
<label for="p-h">Helikopter Bojowy</label>
|
||||
</div>
|
||||
<div>
|
||||
<input type="radio" id="p-n" name="plec" value="n">
|
||||
<label for="p-n">Wolę nie podawać</label>
|
||||
</div>
|
||||
</fieldset>
|
||||
<button type="submit">Wyślij</button>
|
||||
</form>
|
||||
</article>
|
||||
<article>
|
||||
<h4>Zadanie 6</h4>
|
||||
<form method="get" action="zad6.html">
|
||||
<fieldset>
|
||||
<legend>Ulubione języki programowania</legend>
|
||||
<div>
|
||||
<input type="checkbox" id="j-cb" name="jezyk" value="cb">
|
||||
<label for="j-cb">CBot</label>
|
||||
</div>
|
||||
<div>
|
||||
<input type="checkbox" id="j-spp" name="jezyk" value="spp">
|
||||
<label for="j-spp">SourcePawn++</label>
|
||||
</div>
|
||||
<div>
|
||||
<input type="checkbox" id="j-bf" name="jezyk" value="bf">
|
||||
<label for="j-bf">Brainfuck</label>
|
||||
</div>
|
||||
<div>
|
||||
<input type="checkbox" id="j-hc" name="jezyk" value="hc">
|
||||
<label for="j-hc">HolyC</label>
|
||||
</div>
|
||||
</fieldset>
|
||||
<div>
|
||||
<input type="checkbox" id="akcept" name="akcept" value="akcept">
|
||||
<label for="akcept">Akceptuję regulamin</label>
|
||||
</div>
|
||||
<button type="submit">Wyślij</button>
|
||||
</form>
|
||||
</article>
|
||||
<article>
|
||||
<h4>Zadanie 7</h4>
|
||||
<form method="get" action="zad6.html">
|
||||
<select id="przedmioty" name="przedmioty" required>
|
||||
<option value="" selected>-- wybierz --</option>
|
||||
<option value="elsk">ELSK</option>
|
||||
<option value="lsk">LSK</option>
|
||||
<option value="adso">ADSO</option>
|
||||
<option value="so">SO</option>
|
||||
<option value="pp">PP</option>
|
||||
</select>
|
||||
<label for="miasto">Miasto</label>
|
||||
<input id="miasto" placeholder="Miasto" required list="lista-miasta">
|
||||
<datalist id="lista-miasta">
|
||||
<option value="bb">Bielsko-Biała</option>
|
||||
<option value="katzewice">Katowice</option>
|
||||
<option value="zw">Żywiec</option>
|
||||
<option value="gl">Gliwice</option>
|
||||
<option value="pysczkowice">Pyskowice</option>
|
||||
<option value="kt">Kęty</option>
|
||||
</datalist>
|
||||
<button type="submit">Wyślij</button>
|
||||
</form>
|
||||
</article>
|
||||
<article>
|
||||
<h4>Zadanie 8</h4>
|
||||
<form method="get" action="zad6.html">
|
||||
<label for="wiadomosc">Wiadomość</label>
|
||||
<textarea required id="wiadomosc" name="wiadomosc" rows="4" cols="40" placeholder="Twoja wiadomość..." maxlength="200"></textarea>
|
||||
max 200 znaków
|
||||
<button type="submit">Wyślij</button>
|
||||
</form>
|
||||
</article>
|
||||
<article>
|
||||
<h4>Zadanie 9</h4>
|
||||
<form method="get" action="zad6.html">
|
||||
<input type="hidden" name="formularz_id" value="kontakt_2025">
|
||||
<label for="ocena">Ocena (1-10)</label>
|
||||
<input id="ocena" name="ocena" type="range" min="1" max="10" step="1" value="5">
|
||||
<button type="reset">Reset</button>
|
||||
</form>
|
||||
</article>
|
||||
</main>
|
||||
</section>
|
||||
<footer>
|
||||
<img class="banner" src="https://darksteveneq.nonamesoft.xyz/assets/banners/athens_acropolis_4793_images_trinitynow.gif" width="88">
|
||||
<img class="banner" src="https://darksteveneq.nonamesoft.xyz/assets/banners/paws.gif" width="88" height="31">
|
||||
<img class="banner" src="https://darksteveneq.nonamesoft.xyz/assets/banners/anythingbut.gif" width="88" height="31">
|
||||
<img class="banner" src="https://darksteveneq.nonamesoft.xyz/assets/banners/itoddler.gif" width="88" height="31">
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user