ASDV-WebDev/Assignments/lab6_1_CalebFontenot/public_html/6.2/index.html
2023-02-07 16:48:43 -06:00

27 lines
649 B
HTML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="en">
<head>
<title>Examples of the Box Model</title>
<meta charset="utf-8">
<style>
body { background-color: #FFFFFF;
}
h1 { background-color: #D1ECFF;
padding-left: 60px;
border-bottom: 3px ridge #330000; }
#box { background-color: #74C0FF;
margin-left: 60px;
padding: 5px 20px;
border-top-left-radius: 90px;
border-bottom-left-radius: 90px;
}
</style>
</head>
<body>
<h1>Examples of the Box Model</h1>
<div id="box">HTML elements display as boxes on web pages. This div element is configured to have a blue background.</div>
</body>
</html>