Answers for "how to make 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

Browse Popular Code Answers by Language