Answers for "benefits of using an external CSS stylesheet instead of applying styles embedded in the <head> of the HTML file?"

0

add stylesheet to html

<!-- Linking External Style Sheets -->
<head>
   <link rel="stylesheet" href="css/style.css" />
</head>

<!-- Embedded Style Sheets -->
<head>
   <style>
      body {
         background-color: YellowGreen;
      }
      h1 {
         color: blue;
      }
      p {
         color: red;
      }
   </style>
</head>

<!-- Inline Styles -->
<h1 style="color: red; font-size: 30px">This is a heading</h1>
<p style="color: green; font-size: 18px">This is a paragraph.</p>
<div style="color: green; font-size: 18px">This is some text.</div>
Posted by: Guest on February-28-2021
0

how to refer to external style sheet

<html>
<head>
<link rel="stylesheet" type="text/css" href="Name.css">
</head>
<body>
.
.
.
</body>
Posted by: Guest on August-05-2020

Code answers related to "benefits of using an external CSS stylesheet instead of applying styles embedded in the <head> of the HTML file?"

Browse Popular Code Answers by Language