Check out example codes for "default html template". It will help you in understanding the concepts better.
Code Example 1
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>My Page Title</title>
<meta name="description" content="My Page Description">
<link rel="stylesheet" href="css/styles.css?v=1.0">
</head>
<body>
<script src="js/scripts.js"></script>
</body>
</html>
Code Example 2
<!doctype html>
<html>
<head>
<title>Some Title</title>
<meta name="description" content="the description">
<meta name="author" content="the content">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<h1> Some Body </h1>
<script src="js/scripts.js"></script>
</body>
</html>
Learn ReactJs, React Native from akashmittal.com