HTML/CSS: Unterschied zwischen den Versionen

Aus
Wechseln zu: Navigation, Suche
 
Zeile 1: Zeile 1:
  
<syntaxhighlight lang="python" line='line'>
+
<syntaxhighlight lang="html" line='line'>
 
<!DOCTYPE html>
 
<!DOCTYPE html>
 
<html>
 
<html>

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>