Learn and solve programming tasks

sponsored

sponsored

Responsive Advertise here call +234 8145146745

GUIDES TO WRITING YOUR FIRST HTML WEBSITE


GUIDES TO WRITING YOUR FIRST HTML WEBSITE

With HTML you can create your own Website. This tutorial teaches you everything about HTML. HTML is easy to learn - You will enjoy it.


EXAMPLE 1
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>

<h1>This is a Heading</h1>
<p>This is a paragraph.</p>

</body>
</html>

THIS IS HOW YOUR SETUP WILL LOOK LIKE

THIS WILL BE USED TO BEATIFY YOUR FIRST PROJECT BUT FIRST YOU WILL NEED TO KNOW SOME BASIC CSS

body {
    background-color: lightblue;
}
h1 {
    color: white;
    text-align: center;
}
{
    font-family: verdana;
    font-size: 20px;
}


TO BE CONTINUED CHECK BACK IN FEW MINUTES

1 comment:

  1. copy and paste that to ur programming software and preview it your browser to see the output

    ReplyDelete