Web Fundamentals
Web Fundamentals What is Website? Website is the collection of multiple webpages. Components of Website 1) HTML 2) CSS 3) JS HTML stands for Hyper Text Markup Language. It is a language used for creating webpages and holding content like images,audio,video. Latest version of HTML is HTML5. It provides more facilities than the previous four version of HTML. The first version of HTML is released in the year 1991. Markup Language is a language which is made up of tags. In HTML, there are different tags which have different meaning. HTML contains open and closing tag as well as self closing tags. Examples are: Self closing tags are img, br, hr. Boilerplate of HTML5: <!DOCTYPE html> <html> <head> <title>Document</title> </head> <body> Hello world </body> </html> Explanation...