22 lines
897 B
HTML
22 lines
897 B
HTML
<!DOCTYPE html>
|
|
<!--
|
|
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
|
Click nbfs://nbhost/SystemFileSystem/Templates/ClientSide/html.html to edit this template
|
|
-->
|
|
<html>
|
|
<head>
|
|
<title>TODO supply a title</title>
|
|
<meta charset="UTF-8">
|
|
<link href="site.css" rel="stylesheet">
|
|
<style>
|
|
body {color: #0000FF;}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p>This paragraph applies the external and embedded styles —
|
|
note how the blue text color that is configured in the embedded styles takes precedence
|
|
over the black text color configured in the external stylesheet.</p><!-- comment -->
|
|
<p style="color: #FF0000">Inline styles configure this paragraph to have red text and take precedence over the embedded and external styles.</p>
|
|
</body>
|
|
</html>
|