layout/kontakt.html

61 lines
1.4 KiB
HTML
Raw Normal View History

2024-05-24 12:09:03 +00:00
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="UTF-8" />
<title>Firma IT</title>
<link rel="stylesheet" href="styl.css" />
<link rel="icon" href="logo.png" />
</head>
<body>
<section id="kontener">
<section id="logo">
<img src="logo.png" alt="logo firmy" />
</section>
<section id="menu">
<a href="index.html">Strona główna</a>
<a href="uslugi.html">Usługi</a>
<a href="kontakt.html">Kontakt</a>
</section>
<section id="baner">
<img src="myszka.jpeg" alt="Usługi informatyczne"/>
</section>
<section id="glowny">
<h2>Kontakt</h2>
<form>
<table>
<tr>
<td>Imię:</td>
<td><input type="text" id="imie" /></td>
</tr>
<tr>
<td>Nazwisko:</td>
<td><input type="text" id="nazwisko" /></td>
</tr>
<tr>
<td>E-mail:</td>
<td><input type="email" id="email" /></td>
</tr>
<tr>
<td>Zgłoszenie:</td>
<td><textarea id="zgloszenie" cols="40" rows="10"></textarea></td>
</tr>
<tr>
<td></td>
<td><input type="checkbox" id="check" />Zapoznałam/em się z regulaminem</td>
</tr>
<tr>
<td></td>
<td><button type="reset">Resetuj</button><button type="button" onclick="formularz();">Prześlij</button></td>
</tr>
</table>
</form>
<hr/>
<p id="wynik"></p>
</section>
<section id="stopka">
<p>Autor strony: Rzodkiew <strong>PESEL</strong></p>
</section>
</section>
</body>
</html>