Web engineering ( 24 Sep. 2012 )
Web server Web client Html Css Html language was started To create an web page open notepad and type desired tags than save it as name.html Than open the saved file in any web browser Different tags were explained Example <html> <body> <h1> </h1> <title> </title> </body> </html> Example Explained - The text between <html> and </html> describes the web page - The text between <body> and </body> is the visible page content - The text between <title> and </title> is displayed as a title - The text between <h1> and </h1> is displayed as a heading you can change h1 to h6 it will increase the size of text What is ...