Check out example codes for "external css". It will help you in understanding the concepts better.
Code Example 1
<html>
<head>
<link rel="stylesheet" type="text/css" href="mystyle.css"></link>
</head>
<body>
Code Example 2
<link rel="stylesheet" type="text/css" href="mystyle.css">
Code Example 3
<link rel="stylesheet" type="text/css" href="style.css">
Code Example 4
<link rel="stylesheet" type="text/css" href="mystyle.css">
Code Example 5
<!DOCTYPE html>
<html>
<head>
<style>
body {background-color: powderblue;}
h1 {color: blue;}
p {color: red;}
</style>
</head>
<body>
<h1>This is a
heading</h1>
<p>This is a paragraph.</p>
</body>
</html>
Code Example 6
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css"
href="mystyle.css">
</head>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph.</p>
</body>
</html>
Learn ReactJs, React Native from akashmittal.com