CSS Selector (Property: Value) Body (Background-Color: Red)
CSS Selector (Property: Value) Body (Background-Color: Red)
<html>
<head> title>Internal CSS </title>
<style type="text/css">
body {background-color: red}
Internal CSS </style>
</head>
<body>
</body>
</html>
<html>
<head>
<title>External CSS by WWM</title>
External CSS <link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
</body>
</html>
<html>
<head> title>Inline CSS by WWM</title>
</head>
Inline CSS <body>
<p style="color: red; margin-left: 50%">This is Paragraph</p>
</body>
</html>