Lila Avenue

Website Projects

Create a Web page

← Return

Let's add some color - we can use the HTML 'style' attribute to add some 'style' to our text. Styles are referred to as 'CSS', or Cascading Style Sheets'.


<!DOCTYPE html>
<html>
    <head>        
        <title>My New Web Page</title>
        <style>
            h1 {
                color: blue;
            }
        </style>
    </head> 
    <body> 
        <h1> Hi there! </h1>
        <p>I'm a little web page!</p>
    </body>
</html>

Double click on the file and here's the resulting web page:

simple web page