initial commit
This commit is contained in:
commit
e4acf89154
BIN
Dateien.zip
Normal file
BIN
Dateien.zip
Normal file
Binary file not shown.
15
Dateien/2.1_XML.html
Normal file
15
Dateien/2.1_XML.html
Normal file
@ -0,0 +1,15 @@
|
||||
<!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>
|
||||
12
Dateien/2.1_XML.xml
Normal file
12
Dateien/2.1_XML.xml
Normal file
@ -0,0 +1,12 @@
|
||||
<?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>
|
||||
16
Dateien/2.2_DocType.html
Normal file
16
Dateien/2.2_DocType.html
Normal file
@ -0,0 +1,16 @@
|
||||
<!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>
|
||||
14
Dateien/2.3_semantische Elemente.html
Normal file
14
Dateien/2.3_semantische Elemente.html
Normal file
@ -0,0 +1,14 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Document</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- Exkurs: Accessibility -->
|
||||
</body>
|
||||
</html>
|
||||
25
Dateien/2.4_Überschriften.html
Normal file
25
Dateien/2.4_Überschriften.html
Normal file
@ -0,0 +1,25 @@
|
||||
<!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>
|
||||
26
Dateien/2.5_Formulare.html
Normal file
26
Dateien/2.5_Formulare.html
Normal file
@ -0,0 +1,26 @@
|
||||
<!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>
|
||||
43
Dateien/2.6_CSS.html
Normal file
43
Dateien/2.6_CSS.html
Normal file
@ -0,0 +1,43 @@
|
||||
<!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>
|
||||
Loading…
x
Reference in New Issue
Block a user