Create a basic web page
Create a basic web page
Empowering Today’s Learners to Become Tomorrow’s Leaders
Open Notepad and add the following HTML:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>My first CSS work </title>
</head>
<body>
<h1>Styles</h1>
<p>This is a paragraph<br /> with a break </p>
</body>
</html>
2. Save as css.html in your procedures folder.