Day by Day HTML Tutorial #2 - Coding
Now we move onto the coding side of things...
Firstly open up Notepad and write this
Code:
<html>
<head>
<title>Test Web-Browser</title>
<body>
<h1>This is a test Heading</h1>
<p>This is a Test Paragraph</p>
</body>
</html>
In that we have
- Given the tab a title
- Created a title with the heading "This is a testing heading"
- Created a paragragh with the text "This is a Test Paragraph"
Now what we are going to do is
- Save it so we can view it on our web-browser
- View it
To do that we have to
- Go to "File" then "Save as
- Save it as "Index.html"
NOTE: All these without quotations...
Now go to the directory of where you saved you're File and open it
It should have
- A tab saying what was written
- A heading
- A paragragh
If you would like to continue with this website just "Right-Click" on "Index.html" and Press "edit"
Next Lesson "Adding Links"