How Do I Start Creating A Web Page Can you Give an Example
to start making html web pages, start your text editor like notepad then Type in the following text: <html> <head> <title>Title of page</title> </head> <body> This is my first homepage. <b>This text is bold</b> </body> </html> | Save the file as "page.html". Now open page.html with your browser. if you don't know how to, start your browser like internet explorer or firefox for example, then Select "Open" (or "Open Page") in the File menu of your browser. A dialog box will appear. Select "Browse" (or "Choose File") and locate the HTML file you just created - "page.html" - select it and click "Open". Now you should see an address in the dialog box, for example "C:\user\docs\page.html". Click OK, and the browser will display the page.
|