Introduction To HTML PDF Download TechCBSE
Introduction To HTML PDF Download TechCBSE
A. HTML is a Web Designing Language used to create and design webpage. HTML is a Markup language instead programming
language.
A. A single page of a website is called web page. Its used for spread information & services to the users.
A. Front page of a website is called Home Page. Home Page shows the main attraction to the users.
A. HTML was developed by Sir Tim Berners Lee in late 1991 but was not released, than published in 1995 as HTML 2.0. HTML
4.01 was published in 1999 and was a main version of HTML.
html tutorial
1. Container Tag Contain start and end tag both. Ex. <title> </title>
A. In HTML, Those tag who has start tag and close tag both with self those tags are called
Container Tag.
A. Those tag who has only opening/start tag with self not contained close/end tag.
Q.9. How will you start a code or program of HTML? Which tag is used for that?
A. <html> tag is used to start a html program file and end with </html> tag.
A. Title tag is used to give a title name of a Web Page that shows on the title bar.
1. Head Part
2. Body Part
A. <html>
<body bgcolor=”blue”>
</body>
</html>
A. <p> tag is used to create paragraphs in a html Web page. This is a container tag.
Q. 14. How do you insert background image in a html page? Write the html code to insert
background image.
A. <body background=”image address ” > is used to insert image in a html Web page. Background attribute is the part of body tag.
A. <body bgcolor=”green” > is used to set background colour green. Bg color attribute is used to set background colour of a html
page. We can use colour name and colour code to set a particular colour.
Q. 16. What is img tag in htm? Write the code to insert an image in a html document.
A. <img> tag is used to insert an image in html document. You can use src attribute to use a particular image in your html document.
Ex. <IMG SRC=”address of image” >
You just paste the desired address of image that is available in your system.
A. Hyperlink is a type of text link that is connected to another page or content. It shoes in blue colour may be in underline.
In html anchor <a> tag is used to insert or create a hyperlink in a html document.
Q. 18. How will you link any website in your html document?
A. <a> Anchor tag is used to create a link, we can link any website using below given html code.
<a href=www.google.com> Google </a>
Q. 19. How many parts have an HTML document?
Q. 20. Give some examples of empty tags with use of empty tags.
Q. 21. How can we create a list? How many types of list in HTML? Define list tags with code.
Q. 22. What is heading tag in HTML? How many types of Heading tags in HTML?
A. Heading tag <head> is used for give heading of any topic or paragraph in HTML. There are six heading tags in HTML.
1. <H1>
2. <H2>
3. <H3>
4. <H4>
5. <H5>
6. <H6>
Example of head tag :
A. <sub> tag is used to make a subscript and <sup> tag is used to make a superscript value in HTML page.
A. H<sub>2</sub>O
Results => H2O (science)
A<sup>2</sub>
A Square (math)
<text> — a simple text box that allows input of a single line of text.
<email> – a type of <text> that requires a partially validated email address
<number> – a type of <text> that requires a number
<password> – similar to <text>, it is used for security purposes, in which the characters typed in are invisible
or replaced by symbols
<radio> — a radio button is used ti insert radio button in form, user can select only one from given options.
<file> — a file select control for uploading a file
<reset> — a reset button that, when activated, tells the browser to restore the values to their initial values.
<submit> — a button that tells the browser to take action on the form (typically to send it to a server)
<textarea> — much like the <text> input field except a <textarea> allows for multiple rows of data to be
shown and entered
<select> — a drop-down list that displays a list of items a user can select from