Ordner umbenannt. Und Ordner von 24-9-25
This commit is contained in:
16
progp/24-9-11/aufgabe-2.html
Normal file
16
progp/24-9-11/aufgabe-2.html
Normal file
@@ -0,0 +1,16 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Document</title>
|
||||
</head>
|
||||
<body>
|
||||
<div align=center>
|
||||
<!-- /\ FORMATIERUNG DIREKT IN DER HTML DATEI. KEIN CSS -->
|
||||
<h1>HaRo GmbH</h1>
|
||||
<h3>Willkommen auf unseren Websiten</h3>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
42
progp/24-9-11/form.html
Normal file
42
progp/24-9-11/form.html
Normal file
@@ -0,0 +1,42 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>HTML-Formular</title>
|
||||
<!-- wenn man in eine andere datei machen. UNWICHTIG GERADE -> <link rel="stylesheet" type="text/css" href="style.css"> -->
|
||||
<style>
|
||||
div {
|
||||
border: 1px solid silver;
|
||||
margin: 8px 0; /*Aussenabstand oben/unten 8px*/
|
||||
padding: 4px; /*innenabstand überall 8px*/
|
||||
background-color: lightgray;
|
||||
}
|
||||
label {
|
||||
display: inline-block;
|
||||
width: 100px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<!-- form.tm-->
|
||||
<h1>HTML-Formular</h1>
|
||||
<h2>Inputfeld</h2>
|
||||
<form action="">
|
||||
<!-- div -> division ist ein container-->
|
||||
<div>
|
||||
<label for="user_vorname">Vorname: </label>
|
||||
<input id="user_vorname" type="text" name="vorname">
|
||||
<!-- /\ tpye = "text" ist default - kann wegfallen /\}-->
|
||||
</div>
|
||||
<div>
|
||||
<label for="user_nachname">Nachname: </label>
|
||||
<input id="user_nachname" type="text" name="nachname">
|
||||
</div>
|
||||
<button>Ab damit</button>
|
||||
</form>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
26
progp/24-9-11/grundlagen-html.html
Normal file
26
progp/24-9-11/grundlagen-html.html
Normal file
@@ -0,0 +1,26 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Grundlagen - HTML</title>
|
||||
<style>
|
||||
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Hallo Welt</h1> <!--Überschrift 1-->
|
||||
|
||||
<h2>Hallo</h2> <!--Überschrift 2-->
|
||||
|
||||
<h3>Hallo</h3> <!--Überschrift 3-->
|
||||
|
||||
<b>Hallo</b><br> <!--b=bold also dich, br=break also zeilenumbruch-->
|
||||
|
||||
<strong>Hallo</strong><br> <!--strong wie b also macht dick, br = zeilenumbruch -->
|
||||
|
||||
<i><strong>Hallo</strong></i> <!--i = kursiv, strong = wie b-->
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
5
progp/24-9-11/style.css
Normal file
5
progp/24-9-11/style.css
Normal file
@@ -0,0 +1,5 @@
|
||||
div {
|
||||
border: 1px solid silver;
|
||||
margin: 8px 0; /*Aussenabstand oben/unten 8px*/
|
||||
padding: 4px; /*innenabstand überall 8px*/
|
||||
}
|
||||
Reference in New Issue
Block a user