begin MP2

This commit is contained in:
2023-01-25 10:57:54 -06:00
parent 9e37c5ddfc
commit 44d8b7787c
40 changed files with 982 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
<!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 &mdash;
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>

View File

@@ -0,0 +1,12 @@
/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/ClientSide/css.css to edit this template
*/
/*
Created on : Jan 24, 2023, 9:28:59 AM
Author : caleb
*/
body {
background-color: #FFFFCC;
color: #0000FF;
}