<!DOCTYPE html>
<html>
<head>
<title>Title</title>
<style type"text/css">
h1 {color:#7FFF00;
font-family:arial;
text-align:center;}
p {line-height:130;
text-indent:25px;}
ul {font-weight:bold;}
ol {font-style:italic;}
body {background-color:yellow;}
<!--color:white; (this would make all text white-->
</style>
<!--h1 is what we are dealing with, we are changing color to blue, and chaning font to arial, makes text centered -->
<!--p makes space between text 130%-->
<!--ul is bold-->
<!--ol is italic-->
</head>
<body>
<h1>My First Website</h1>
<p> this is paragraph text this is paragraph texthis is paragraph texthis is paragraph texthis is paragraph texthis is paragraph texthis is paragraph texthis is paragraph texthis is paragraph texthis is paragraph texthis is paragraph texthis is paragraph tex</p>
<ul>
<li>unordered list</li>
</ul>
<ol>
<li> ordered list</li>
</ol>
</body>
</html>
Thank you,
W1174503

New Topic/Question
Reply


MultiQuote





|