Seems that you have decided to create web pages yourself!
Good! So let's begin quickly.
Web pages are basically files with .htm or .html file extensions. They contain a code named "Hyper Text Mark-up Language" or HTML. These codes when viewed in a browser like Mozilla Firefox or Internet Explorer will be seen as cool web pages no matter how complicated the underlying code is.
- Tools you will need:
notepad in windows. You will also need a browser like Mozilla Firefox or Internet Explorer. In this Tutorial we assume that you
are working in any of the popular Linux Distro or Windows 9X/NT/2000/XP.
Now open your text editor and type the following code:
<html>
Hello world!
</html>
Now save the text as "page1.html". Now Open the file. Congratulations! What You see is your first web page opened in your web browser.
and are called tags. First one is a start tag and second is an end tag. Tags are something like commands in programming languages. tag tells the browser that this is start of the HTML and marks its end.
mark start and end of an HTML page.
Webdesign page 2 >