This commit is contained in:
moonleay 2023-09-07 23:27:16 +02:00
commit 2cc19a31e7
5 changed files with 108 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 193 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 94 KiB

BIN
content/logos/pepps.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 130 KiB

3
index.css Normal file
View file

@ -0,0 +1,3 @@
.image {
max-width: 10vw;
}

105
index.html Normal file
View file

@ -0,0 +1,105 @@
<!DOCTYPE html>
<html lang=de>
<head>
<title>Beispiel</title>
<link rel="stylesheet" href="index.css">
</link>
<meta charset="UTF-8">
</meta>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</meta>
<meta name="keywords" content="Beispiel">
</meta>
<meta name="description" content="Auto reperaturen">
</meta>
<meta name="author" content="Eric">
</meta>
</head>
<body>
<p>Das ist ein Paragraph!</p>
<a href="https://watch.etaorion.org/watch?v=dQw4w9WgXcQ" target="_blank">Das ist ein Link! (&Ouml;ffnet in einem neuen Fenster)</a>
<br/>
<a href="https://watch.etaorion.org/" target="_self">Das ist ein Link! (&Ouml;ffnet in diesem Fenster)<a/>
<br/>
<!--Das ist ein Bild (Lokal)!-->
<img class="image" src="./content/logos/VSCodium_Logo.webp" alt="VSCodium Logo"/>
<br/>
<!--Das ist ein Bild von einem Webserver!-->
<img class="image" src="https://watch.etaorion.org/img/icons/logo.svg" alt="Piped Logo"/>
<br/>
<!--Das ist ein Bild als Link!-->
<a href="https://watch.etaorion.org/watch?v=UGxr2tnzGS4" target="_blank">
<img class="image" src="./content/logos/pepps.png" alt="Haben wir noch pepps?"/>
</a>
<p>Die besten (Text) Editoren:</p>
<!--Das ist eine Liste!-->
<ul>
<li>
<p>NeoVim</p>
</li>
<li>
<p>VSCodium</p>
</li>
<li>
<p>Kate</p>
</li>
<li>
<p>Sublimetext</p>
</li>
</ul>
<p>Programmiersprachen:</p>
<!--Das ist eine Tabelle!-->
<table>
<tr>
<th>
Sprache
</th>
<th>
(H&auml;ufiger) Verwendungszweck
</th>
</tr>
<tr>
<td>
Kotlin
</td>
<td>
Android Apps, Desktop Apps, Web Stuff
</td>
</tr>
<tr>
<td>
C
</td>
<td>
Low Level Systeme entwickeln, etc.
</td>
</tr>
<tr>
<td>
Python
</td>
<td>
AI erstellen, Daten analysieren
</td>
</tr>
</table>
</body>
</html>