Skip to main content

Posts

Showing posts from November, 2020

Html Basics

  image source - google 1: What is HTML ? A:  HTML is a Hiper Text Markup Language, it's basicaly means we can structure our web document throw html markups.If we want to make a web page or web documrnt then we have to first start with the html, like this, <Html>     <Head>     </Head>     <Body>     </Body> </Html> 2: What is <Head>? A: Head is a child tag of Html, this comes under the html parent tag, and it contains the the information about the html page, like css file link, js file link, meta info. , screen size info, and other if you are using bootstrap or popper.js or any jquery file link. 3: What is <Body>? A: Body is also a child tage of html tag but it contain's the data which visible on the wab page only.             like, Tables, Images, List's, Drop Down etc.. 4: Which  basics thing's that we have to remember in general at the time of mking any web page using html ? A: 1: We should save the file with .html ext