Setup of exercise 1.2
Die HTML Daten vorbereitet, mit Inhalt gefüllt und überprüft.
|
@ -0,0 +1,68 @@
|
||||||
|
<!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>About Me</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> (aktiv)</li>
|
||||||
|
<li><a href="./02_portfolio.html">Portfolio</a></li>
|
||||||
|
<li><a href="./03_contact.html">Kontakt</a></li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
<hr>
|
||||||
|
<main>
|
||||||
|
<section>
|
||||||
|
<h2>So sehe ich schon mal nicht aus...</h2>
|
||||||
|
<img src="./media/profilbild.png" alt="Profilbild">
|
||||||
|
</section>
|
||||||
|
<section>
|
||||||
|
<h2>Über mich</h2>
|
||||||
|
<p> <b>Lorem ipsum dolor sit amet consectetur adipisicing elit.</b> <i>Sequi sit aliquam minus doloribus,
|
||||||
|
laudantium modi voluptas dolore inventore odio quam saepe dolor nisi illum in voluptatum provident
|
||||||
|
maiores neque deserunt.</i> Saepe sint quos ea, aut eaque eos aliquam et sunt laboriosam atque neque
|
||||||
|
eligendi quisquam corporis omnis laborum dolores aspernatur voluptatum magnam perferendis officiis? Vel
|
||||||
|
repellat incidunt delectus accusamus tempore. Consequatur eius reprehenderit, rerum nihil explicabo eos
|
||||||
|
corrupti adipisci ipsa nesciunt beatae qui. Nam, tempora ullam quia placeat, sequi consequatur officia
|
||||||
|
velit odio qui quisquam sapiente <mark>dolorum</mark> id atque molestiae? <del>Wieso schreibe ich das
|
||||||
|
ganze eigentlich auf Latein?</del> Esse est facilis, harum asperiores unde impedit eos ea molestiae
|
||||||
|
at expedita voluptatum repudiandae cupiditate numquam! Tempora quasi nulla, iure ipsam optio voluptate
|
||||||
|
delectus similique id accusamus, commodi officia alias? Ratione officiis maiores sunt molestiae quasi
|
||||||
|
quidem minima nam dolorem exercitationem, rem ipsum incidunt ad, deserunt nisi velit, nobis cupiditate
|
||||||
|
voluptatem. Perferendis cupiditate dolores suscipit at exercitationem corporis tempora quisquam! </p>
|
||||||
|
<p> Ok mal Spaß bei Seite. Ich heiße Justin Dretvic und bin inzwischen 21 Jahre alt. </p>
|
||||||
|
</section>
|
||||||
|
<section>
|
||||||
|
<h2>Über mein Studium</h2>
|
||||||
|
<p>Ich studiere Allgemeine Informatik, obwohl ich 3 Semester Medieninformatik hinter mir habe. Beides habe
|
||||||
|
ich oder studiere ich noch an der <a href="https://www.hs-furtwangen.de">Hochschule Furtwangen</a> und
|
||||||
|
zugegeben macht mir auch beides Spaß. Ich bin viel in Sachen Hochschulpolitik unterwegs und lerne für
|
||||||
|
mein Leben auch immer wieder interessante Dinge dazu. Anders aber mache ich auch freiwillige Tätigkeiten
|
||||||
|
für Studenten. Klar gehören Sachen wie AStA und Fachschaft auch zu diesen, aber für Dinge, wie zum
|
||||||
|
Beispiel mein Tutorium bei Gestaltung Interaktiver Systeme (GIS) in der Fakultät Digitale Medien oder
|
||||||
|
meine Tätigkeit als Mentor bei der Fakultät Informatik, bekomme ich eben auch mal Geld und finanziere
|
||||||
|
meinen Lebensunterhalt damit. <u>Trotzdem habe ich bei all diesen Dingen enormen Spaß!</u>
|
||||||
|
</p>
|
||||||
|
</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>
|
|
@ -0,0 +1,76 @@
|
||||||
|
<!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>Mein Portfolio</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> (aktiv)</li>
|
||||||
|
<li><a href="./03_contact.html">Kontakt</a></li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
<hr>
|
||||||
|
<main>
|
||||||
|
<section>
|
||||||
|
<h2>GIS</h2>
|
||||||
|
<p>Hier würde ich ja gerne meine alten Aufgaben rein packen, aber dafür ist es noch zu früh, wenn man nicht
|
||||||
|
weiß, wie man sie findet. Aber ich kann euch voll das krasse JavaScript zeigen!</p>
|
||||||
|
<p>
|
||||||
|
<code>console.log("Hello World!")</code>
|
||||||
|
</p>
|
||||||
|
<p>Erstaunt, wa?</p>
|
||||||
|
</section>
|
||||||
|
<section>
|
||||||
|
<h2>Medien</h2>
|
||||||
|
<p>Ich bin natürlich aber auch talentiert darin, Medien aus dem Internet zu ziehen. Ihr glaubt mir nicht?
|
||||||
|
dann schaut euch diese Meisterwerke hier an!</p>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th><img src="./media/landschaft_blossoms_small.jpg" alt="blossoms"></th>
|
||||||
|
<th><img src="./media/landschaft_bridge_small.jpg" alt="bridge"></th>
|
||||||
|
<th><img src="./media/landschaft_blossoms_small.jpg" alt="blossoms"></th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><img src="./media/landschaft_bridge_small.jpg" alt="bridge"></td>
|
||||||
|
<td><img src="./media/landschaft_blossoms_small.jpg" alt="blossoms"></td>
|
||||||
|
<td><img src="./media/landschaft_bridge_small.jpg" alt="bridge"></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
<details>
|
||||||
|
<summary>Diesen Block erweitern für mehr Infos!</summary>
|
||||||
|
<p>Ja komm, als ob ich irgendwas davon selbst gemacht habe.</p>
|
||||||
|
<p>Aber immerhin habe ich selbst die Bildergröße angepasst!</p>
|
||||||
|
</details>
|
||||||
|
<p>Alternativ habe ich noch ein Video von Furtwangen im Sommesester für euch:</p>
|
||||||
|
<video controls>
|
||||||
|
<source src="./media/snowyVideo.mp4" type="video/mp4"> Your browser does not support the video tag.
|
||||||
|
</video>
|
||||||
|
</section>
|
||||||
|
<section>
|
||||||
|
<h2>Challenge:</h2>
|
||||||
|
<p>versuche dieses Bild per "Rechtsklick" + "Bild speichern unter..." zu speichern!</p>
|
||||||
|
<embed src="./media/daisy.jpg" type="image/jpg">
|
||||||
|
</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>
|
|
@ -0,0 +1,63 @@
|
||||||
|
<!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">Jon Doe</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>
|
||||||
|
</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>
|
After Width: | Height: | Size: 42 KiB |
After Width: | Height: | Size: 187 KiB |
After Width: | Height: | Size: 10 KiB |
After Width: | Height: | Size: 980 KiB |
After Width: | Height: | Size: 19 KiB |
After Width: | Height: | Size: 230 KiB |
After Width: | Height: | Size: 371 B |