ASDV-WebDev/Semester 1/Assignments/HTML/lab4_CalebFontenot/public_html/index.html

18 lines
704 B
HTML

<!DOCTYPE html>
<!--
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/html.html to edit this template
-->
<html>
<head>
<title>TODO supply a title</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body style="backgroundcolor:#F5F5F5;color:#008080">
<h1 style="background-color:#008080;color:#F5F5F5;">Inline CSS</h1>
<p>This paragraph inherits the styles applied to the body tag.</p>
<p style="color:#333333">This paragraph overrides the text color style.</p>
</body>
</html>