Answers for "doctype html meaning"

11

doctype html model

<!doctype html>
<html lang="fr">
<head>
  <meta charset="utf-8">
  <title>Titre de la page</title>
  <link rel="stylesheet" href="style.css">
  <script src="script.js"></script>
</head>
<body>
  ...
  <!-- Le reste du contenu -->
  ...
</body>
</html>
Posted by: Guest on March-24-2020
9

html grundgerüst

<!DOCTYPE html>
<html lang="de">
  <head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Titel</title>
  </head>
  <body>

  </body>
</html>
Posted by: Guest on May-15-2020
2

doctype tag

<!DOCTYPE html>  <!--This doesn't have closing tag like others-->
this means this is the version 5 of HTML or HTML5
Posted by: Guest on December-23-2020
0

doctype html

<!DOCTYPE html>
it lets the browser know about the version of HTML you
are using.but it is not nessesary
Posted by: Guest on August-25-2020

Browse Popular Code Answers by Language