big bang
This commit is contained in:
commit
2cc19a31e7
5 changed files with 108 additions and 0 deletions
BIN
content/frogs/airplaneFishing.jpg
Normal file
BIN
content/frogs/airplaneFishing.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 193 KiB |
BIN
content/logos/VSCodium_Logo.webp
Normal file
BIN
content/logos/VSCodium_Logo.webp
Normal file
Binary file not shown.
After Width: | Height: | Size: 94 KiB |
BIN
content/logos/pepps.png
Normal file
BIN
content/logos/pepps.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 130 KiB |
3
index.css
Normal file
3
index.css
Normal file
|
@ -0,0 +1,3 @@
|
|||
.image {
|
||||
max-width: 10vw;
|
||||
}
|
105
index.html
Normal file
105
index.html
Normal 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! (Ö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>
|
Loading…
Reference in a new issue