+ 1
The basic HTML skeleton is the set of tags required of every HTML web page you build. The tags that make up the skeleton tell browsers what kind of file it is reading, and without the skeleton HTML files will not be rendered correctly in web browsers. The Four Skeleton Tags: There are four tags that need to be included in the skeleton. These are the structure tags, so called because they provide browsers with the basic strucure of HTML documents. The four structure tags are: <html> <head> <title> <body> The <html> tag starts an HTML file and tells browswers what kind of file this is. The <head> tag includes information and meta data or scripts as well as stylesheet. The <title> tag is where you place the title of the web page. The <body> is where you place all the information that will actually show up on the web page.
15th Aug 2020, 1:53 PM
Bits!