Answers for "html structure"

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
4

html body structure

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Code Breaker</title>
    <link rel="stylesheet" href="style.css">
</head>

<body>
    <header>
        <h1>Give A Like if you see this heading</h1>
    </header>
    <nav>
        <ul>
            <li>Wrote it simpler to easily delete.</li>
            <li>Home</li>
            <li>Services</li>
            <li>About Us</li>
            <li>Contact</li>
        </ul>
    </nav>
    <section>
        Havn't you liked this answer yet!
    </section>
    <footer>
        Copyright &copy; 2020-2030
    </footer>
</body>

</html>
Posted by: Guest on August-26-2020
3

html structure

<!DOCTYPE html>
<html>
<head>
	<title></title>
</head>
<body>

</body>
</html>
Posted by: Guest on November-07-2020
2

html structure

<!DOCTYPE html>
<html lang="en-US">
<head>
<title>HTML Structure by (Md Abdur Rakib)</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
  // keyword here
<meta name="Keywords" content="">
  // Site Description Here
<meta name="Description" content="">
  // Set your site favicon
<link rel="icon" href="" type="image/x-icon">
    </head>
<body>

//All content about here

</body>
</html>
Posted by: Guest on August-21-2021
37

html

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title>HTML basics</title>
    </head>
    <body>


    </body>
</html>
Posted by: Guest on February-23-2020
-1

structure of an html document

<!DOCTYPE html>
<html>
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>A website</title>
  </head>
  <body>
  	...
  </body>
</html>
Posted by: Guest on September-03-2020

Browse Popular Code Answers by Language