85 lines
2.9 KiB
HTML
85 lines
2.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Document</title>
|
|
</head>
|
|
|
|
<body>
|
|
<header>
|
|
<h1>Ⓜⓔⓘⓝⓔ Ⓦⓔⓑⓢⓔⓘⓣⓔ!</h1>
|
|
</header>
|
|
<hr>
|
|
<nav>
|
|
<h2>hier eine kleine Übersicht meiner Unterseiten:</h2>
|
|
<ul>
|
|
<li><a href="./01_aboutMe.html">Steckbrief</a></li>
|
|
<li><a href="./02_portfolio.html">Portfolio</a></li>
|
|
<li><a href="./03_contact.html">Kontakt</a> (aktiv)</li>
|
|
</ul>
|
|
</nav>
|
|
<hr>
|
|
<main>
|
|
<section>
|
|
<h2>Kontakt...</h2>
|
|
<h3>Kontakt...</h3>
|
|
<h4>Kontakt...</h4>
|
|
<h5>Kontakt...</h5>
|
|
<h6>Kontakt...</h6>
|
|
</section>
|
|
<section>
|
|
<h2>Hier mein Social Media:</h2>
|
|
<ul>
|
|
<li><a href="https://twitter.com/">Twitter</a></li>
|
|
<li><a href="https://www.instagram.com/">Instagram</a></li>
|
|
</ul>
|
|
</section>
|
|
<section>
|
|
<h2>Hier meine Adresse:</h2>
|
|
<address>
|
|
<p>VergissMeinNicht 13a</p>
|
|
<p>12345 PLZ</p>
|
|
<p><a href="mailto:example@example.com">Schreib mir eine E-Mail!</a></p>
|
|
</address>
|
|
</section>
|
|
<section>
|
|
<h2>Sogar mit einem Zitat!</h2>
|
|
<blockquote> Der Sinn des Lebens besteht nicht darin ein erfolgreicher Mensch zu sein, sondern ein
|
|
wertvoller.<br>~ Albert Einstein</blockquote>
|
|
</section>
|
|
<section>
|
|
<h2>Falls ihr mich kontaktieren wollt:</h2>
|
|
<form action="#" method="GET">
|
|
<p>
|
|
<label for="fname">Vorname: </label>
|
|
<input type="text" name="fname" id="fname">
|
|
</p>
|
|
<p>
|
|
<label for="lname">Nachname: </label>
|
|
<input type="text" name="lname" id="lname">
|
|
</p>
|
|
<p>
|
|
<label for="email">E-Mail: </label>
|
|
<input type="email" name="email" id="email">
|
|
</p>
|
|
<p>
|
|
<label for="message"> Deine Nachricht:</label><br>
|
|
<textarea name="message" id="message" cols="30" rows="5"></textarea>
|
|
</p>
|
|
<input type="submit">
|
|
</form>
|
|
</section>
|
|
</main>
|
|
<hr>
|
|
<footer>
|
|
<p>Hier könnte Ihre Werbung stehen! Nein? Dann eben das:</p>
|
|
<a href="https://validator.w3.org/"><img src="./media/validator.png" alt="validator"></a>
|
|
<p>Hier noch meine <a href="./media/blindText.pdf" target="_blank">Datenschutzerklärung</a>, wenn ich eine
|
|
hätte...</p>
|
|
</footer>
|
|
</body>
|
|
|
|
</html> |