Monday 30 June 2014

HTML Editors for make your web page !!

You can edited HTML by using a professional HTML editor like:

1. Notepad++
2. Adobe Dreamweaver
3. Notepad

However, for learning HTML we recommend a text editor like Notepad (Windows) or TextEdit (Mac).

Now I present with Notepad how to create your first HTML page.

Step 1: 
To open Notepad in Windows 7:
Click Start (bottom left on your screen). Click All Programs. Click Accessories. Click Notepad.
To open Notepad in Windows 8 or Windows 8.1:
Open the search bar and Type Notepad.

Or, Just click your Mouse right button now go "New> Text Document".

Step 2: 
Write HTML documents.
Write or copy some HTML into Notepad. For example:

<!DOCTYPE html>
<html>
<body>

<header>
<h1>My First HTML page</h1>
</header>

<p>My first HTML paragraph.</p>

<footer>My first HTML footer</footer>

</body>
</html>
[you can use this code for create your first HTML page ]

Step 3: 
Save the file on your folder or file.
Select File -> Save as in the Notepad menu.
When saving an HTML file, use either the .htm or the .html file extension. There is no difference, it is entirely up to you.
for example your HTML file name "index.html".

Step 4:
View HTML Page in Your Browser and the result will look much like this page:


If your need help please watch this video:

No comments:

Post a Comment