Check out example codes for "how to add css to html". It will help you in understanding the concepts better.
Code Example 1
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph.</p>
</body>
</html>
Code Example 2
/*
Adding css file into html document
*/
<link rel="stylesheet" type="text/css" href="yourstylesheetname.css"> /* add this line into head tag of the file with change in file name. */
/*
I hope it will help you.
Namaste
*/
Code Example 3
<!-- External CSS -->
<!-- External styles are defined within the <link> element, inside the <head> section of an HTML page: -->
<!--
body {
background-color: lightblue;
}
h1 {
margin-left: 20px;
}
-->
<head>
<link rel="stylesheet" type="text/css" href="mystyle.css">
</head>
<body>
<h1>Heading Text</h1>
</body>
<!-- Internal CSS -->
<!-- Internal styles are defined within the <style> element, inside the <head> section of an HTML page: -->
<head>
<style>
body {
background-color: linen;
}
h1 {
color: maroon;
margin-left: 40px;
}
</style>
</head>
<body>
<h1>Heading text</h1>
</body>
<!-- Inline CSS -->
<!-- Inline styles are defined within the "style" attribute of the relevant element: -->
<body>
<h1 style="color:blue;text-align:center;">Heading Text</h1>
<p style="color:red;">Paragraph Text.</p>
</body>
Code Example 4
<link rel="stylesheet" href="hi.css">
Code Example 5
<head>
<link rel="stylesheet" type="text/css" href="theme.css">
</head>
Code Example 6
<link rel="stylesheet" href="styles.css">
Learn ReactJs, React Native from akashmittal.com