HTML introduction
HTML stands for HyperText Markup Languages. They uses webpage development for or website.In this language are very easily for design in website.HTML document in makeup and style for CSS.An HTML file can be created using a simple text editor. The most essential Web standards are HTML, CSS, and XML. The latest HTML standard isXHTML 1.0. HTML5. Important & basic tags in html: Example: Creating a simple web page 1. Start Notepad. 2. Type in the following text <html> <head> <title>Title of page</title> </head> <body> Thisis a very basic webpage. </body> </html> 3. Save the file as "firstpage .html ". 4. Double click the saved file the browser will display the page. Example Explained: The first tag in your HTML document is <html>.This tag tells your browser that this is the start of anHTML document. The last tag in your document is </html>. This tag tells your browser that this is the end of the HTML document....
Comments
Post a Comment