106 lines
2.3 KiB
HTML
106 lines
2.3 KiB
HTML
|
<!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! (Öffnet in einem neuen Fenster)</a>
|
||
|
|
||
|
<br/>
|
||
|
|
||
|
<a href="https://watch.etaorion.org/" target="_self">Das ist ein Link! (Ö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ä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>
|