HTML/CSS: Unterschied zwischen den Versionen
Stefan (Diskussion | Beiträge) (Die Seite wurde neu angelegt: „ <!DOCTYPE html> <html> <head> <title> Eine erste Seite </title> </head> <body> <a href="contact.html">Kontakt</a> <a hre…“) |
Stefan (Diskussion | Beiträge) |
||
(Eine dazwischenliegende Version desselben Benutzers wird nicht angezeigt) | |||
Zeile 1: | Zeile 1: | ||
+ | <syntaxhighlight lang="html" line='line'> | ||
<!DOCTYPE html> | <!DOCTYPE html> | ||
− | |||
− | |||
<html> | <html> | ||
<head> | <head> | ||
Zeile 12: | Zeile 11: | ||
</body> | </body> | ||
</html> | </html> | ||
+ | </syntaxhighlight> |
Aktuelle Version vom 30. März 2021, 17:22 Uhr
<syntaxhighlight lang="html" line='line'> <!DOCTYPE html> <html>
<head> <title> Eine erste Seite </title> </head> <body> <a href="contact.html">Kontakt</a> <a href="http://google.de">Google</a> </body>
</html> </syntaxhighlight>