Sync repo with local folder

This commit is contained in:
justanamelessguy 2026-02-09 14:26:15 +01:00
parent 3fb5262919
commit 177a8d9efb
8 changed files with 0 additions and 151 deletions

Binary file not shown.

View File

@ -1,15 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<a href="https://html.spec.whatwg.org/multipage/">W3C HTML 5.2 Spezifikation</a>
<a href="https://www.w3.org/TR/2021/NOTE-html53-20210128/">W3C HTML 5.3 Spezifikation</a>
<a href="https://www.linkedin.com/learning/html5-grundkurs-2/">Linkedin Learning Kurs (HTML Grundkurs)</a>
</body>
</html>

View File

@ -1,12 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<verzeichnis>
<titel>Wikipedia Städteverzeichnis</titel>
<eintrag>
<stichwort>Genf</stichwort>
<eintragstext>Genf ist der Sitz von ...</eintragstext>
</eintrag>
<eintrag>
<stichwort>Köln</stichwort>
<eintragstext>Köln ist eine Stadt, die ...</eintragstext>
</eintrag>
</verzeichnis>

View File

@ -1,16 +0,0 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 5.2//EN" "http://www.w3.org/TR/html5/strict.dtd">
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
</body>
</html>

View File

@ -1,14 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<!-- Exkurs: Accessibility -->
</body>
</html>

View File

@ -1,25 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<a href="https://www.linkedin.com/learning/html5-grundkurs-2/uberschriftsebenen-richtig-zuweisen">LinkedIn Learning Überschriften</a>
<header>
<h1>Überschrift</h1>
</header>
<section>
<header>
<h1>HTML5</h1>
</header>
<p>Hier gibt es zahlreiche Informationen zu HTML5 ...</p>
<footer>Fussnote...</footer>
</section>
</body>
</html>

View File

@ -1,26 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<a href="https://www.linkedin.com/learning/html5-grundkurs-2/warum-formulare-wichtig-sind">LinkedIn Learning Formulare</a>
<form action="">
<input type="text" name="" id="">
<textarea></textarea>
// date
// datetime-local
// time
// month
// week
// email
// tel
// number
// file
// password
// submit
</form>
</body>
</html>

View File

@ -1,43 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CSS lernen</title>
<style>
/*
Syntax : https://www.w3schools.com/css/css_syntax.asp
Selektoren : https://www.w3schools.com/css/css_selectors.asp
ID, Klasse, Element, Pseudo-Selektoren
CSS einbinden
inline, internal, external
Spezifität : https://developer.mozilla.org/de/docs/Web/CSS/Guides/Cascade/Specificity
!important
Dev-Tools
Media Queries : https://www.w3schools.com/css/css_rwd_mediaqueries.asp
Alternativen
*/
</style>
</head>
<body>
<header>
<h1>Frontend Development</h1>
</header>
<section>
<header>
<h2>CSS lernen</h2>
</header>
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Alias repudiandae aut quae ex esse velit
accusantium eligendi necessitatibus voluptatum amet commodi saepe quas eveniet animi, corrupti, ab tempore
magni! Ratione?</p>
<footer>
<button>mehr erfahren</button>
</footer>
</section>
</body>
</html>