9th Class Computer Chapter 5 Designing Website Short Questions Answer
9th Class Computer Chapter 5 Designing Website Short Questions Answer
We are providing all Students from 5th class to master level all exams preparation in free of cost. Now we have another milestone achieved, providing all School level students to the point and exam oriented preparation question answers for all science and arts students.
After Online tests for all subjects now it’s time to prepare the next level for Punjab board students to prepare their short question section here. We have a complete collection of all classes subject wise and chapter wise thousands questions with the right answer for easy understanding.
Here we are providing complete chapter wise Computer questions and Answers for the 9th class students. All the visitors can prepare for their 9th class examination by attempting below given question answers.
In this List we have included all Punjab boards and both Arts and Science students. These Boards students can prepare their exam easily with these short question answer section
Lahore Board 9th classes short questions Answer
Rawalpindi Board 9th classes short questions Answer
Gujranwala Board 9th classes short questions Answer
Multan Board 9th classes short questions Answer
Sargodha Board 9th classes short questions Answer
Faisalabad Board 9th classes short questions Answer
Sahiwal Board 9th classes short questions Answer
DG Khan Board 9th classes short questions Answer
Bahwalpur Board 9th classes short questions Answer
All above mention Punjab Boards students prepare their annual and classes test from these online test and Short question answer series. In coming days we have many other plans to provide all kinds of other preparation on our Gotest website.
How to Prepare Punjab Board Classes Short Question Answer at Gotest
- Just Open the desired Class and subject which you want to prepare.
- You have Green bars which are Questions of that subject Chapter. Just click on Bar, it slides down and you can get the right answer to those questions.
- You can also Rate those question Answers with Helpful or not to make it more accurate. We will review all answers very carefully and also update time to time.
Now you can start your preparation here below
HTML stands for Hyper Text Markup Language. It is a formatting language used to develop web pages. It uses tags or markups to specify how the contents of web page will be displayed. HTML code can be written in any text editor like Notepad.
The term hypertext is used to refer to the special text in a webpage called hyperlinks. The hyperlinks can be clicked to move from one webpage to another. They are used to navigate the World Wide Web (www).
HTML is a markup Language. It stands for hypertext markup language and is used to create webpages. A webpage consists of different elements that are represented by tags, each tag marks specific text to appear in a specific way on the webpage that is why it is called markup language.
HTML tags are the keywords that denote different elements in HTML document. The HTML tags are surrounded by two angle brackets < The text between the start and end tags is called element.
The attributes of HTML are used to specify the working of HTML tags. They provide additional information about the tags.
Two types of HTML tags are paired tags and singular tags. The paired tags have start tag and end tag such as <HI> and </HI>. The singular tags have start tags but no end tag such as.
The two main sections of an HTML page are Head section and Body section. The Head section identifies the heading or title of document. The body section contains the text that is displayed on a web page. The body section is enclosed within <BODY> and </BODY> tags.
The basic text formatting tag is <FONT>. It has different attributes that can be used to specify different formatting such as font size, font colour and font face. Some other formatting tags are <B> for bold, <I> for Italic, <U> for underline, <SUP> for superscript and <SUB> subscribe.
<BR> is a line break and subsequent text will move to the line below. <P> is the paragraph tag and text will move two lines below. There will be a blank line between text before the <P> tag and text after <P> tag.
Some important attributes of tag are BGCOLOR, BACKGROUND and TEXT, the BGCOLOR specifies the background colour of the Web page, BACKGROUND specifies the background picture of the webpage. TEXT specifies the colour of text displayed on webpage.
The tag to add images is <IMG>.
The SRC attribute of <img> tag?
The SRC attribute of this tag is used to specify the address of the image to be displayed. The BORDER attribute is used to apply border. The WIDTH and HEIGHT attributes are used to specify the width and width of the image. The ALT attribute is used to specify alternate text.
The BGCOLOR attribute of BODY tag is used to apply a background colour in HTML documents. This attribute is not supported in HTML 5.
<HTML>
<BODY BGCOLOR = “green” TEXT = “White”>
This text appears in white colour.
</BODY>
</HTML>
Different types of lists are Ordered Lists, Unordered Lists and Definition Lists.
An ordered list is a list of items in which each item is marked with a number. Ordered list is also known as numbered list.
<OL> tag is used to create an ordered list. It stands for ordered list. <LI> tag is used with each item in the list. It stands for list item. It has no closing tag. </OL> tag is used to close an ordered list.
An unordered list is a list of items in which each item is marked with a symbol.
<UL> tag is used to create an unordered list. IT stands for unordered list. <LI> tag is used with each item in the list. </UL> tag is used to close an unordered list.
A definition list is not a list of items. It consists of terms and description of terms.
<DL> tag is used to create a definition list. It stands for definition list. <DT> tag is used with each term in the definition list.
Hyperlink is an icon, graphic or text in a document that links to another document or object. Each website on internet contains many pages that are linked with one another. The links are used to move from one page to another on the internet.
All hyperlinks are created with the anchor tag such as <A>. Its closing tag is </A>. The HREF attribute of <A> is used to specify the link destination such as <A
The <TABLE> tag is used to define a table. Three attributes of TABLE tag include BORDER, COLSPAN and ROWSPAN.
The three basic table elements are <TABLE><TR><TD>.
<TR> tag is used to define a row in a table and <TD> tag is used to define a data cell. <TH> tag is used to define the header row of the table.
The <TD> tag is used to define a data cell. The <TH> tag is used to define the header cell. The text in <TD> tag appears normal but the text in <TH> tag appears blood.
The COLSPAN attribute specifies the number of columns for a cell. The ROWSPAN attribute the number of rows for a cell.