Answers for "simple html structure"

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
3

html structure

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

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

html code structure

<!DOCTYPE html>
<html>

<head>
    <title>tab name</title>
    <link rel="stylesheet" href="style.css">
    <!--  Change style.css to stylesheet name or remove the <link> if you want to use <style></style> -->
</head>

<body>
    <header>
        <h1>Heading</h1>
  </header>
    <section>
      <p></p>
    </section>
    <footer>
        Copyright &copy; 2020-2030
        <!--  you can use both &#169; and &copy; to display copyright symbol -->
    </footer>
</body>

</html>
Posted by: Guest on November-05-2021
-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