HTML CSS
<tag attribute=”value”> selector {property: value}
<body bgcolor=”red”> 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>
p {text-align: center; font-family: "sans serif"}