Check out example codes for "structure of html". It will help you in understanding the concepts better.
Code Example 1
<!DOCTYPE html>
<html>
<head>
<title>Some Title</title>
<link href="css_file.css" rel="stylesheet"> <!-- external CSS -->
</head>
<body>
<!-- main content -->
</body>
</html>
Code Example 2
<!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 © 2020-2030
</footer>
</body>
</html>
Code Example 3
<!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>
Code Example 4
<!DOCTYPE html>
'Inserts the DTDs'
Code Example 5
<!DOCTYPE html>
<head>
<!-- Miscellaneous Stuff Here -->
</head>
<body>
<!-- Main Divs here -->
</body>
Learn ReactJs, React Native from akashmittal.com