Explain the following (with example): 1. linking on same Web page. -Technology

1 Answer

Answer :

Linking on the Same Web PageTo create an internal link, you need to use a pair of <a> tags. The first <a> tag is used to specify the name of the target location for identification purpose. It is known as target fragment. You can use the <a> tag with its name or id attribute to identify a fragment. This type of anchor is commonly called as named anchor.The first step is to make the target fragment. The simple syntax to do so is written below:<a name =”aa”> Part A </a>Where, “aa” is the name of fragment/segment you want to refer (like top, bottom etc.). The second <a> tag is used to create a link to the target fragment. The simple syntax to link to the target segment is written below:<a href = “#aa”> ClickHere </a>In the second <a> tag, the value of href attribute with # symbol is to be specified.Example: To show the internal linking in an HTML document.<html><head><title>Internal Linking<title></head><body><h1>Linking in a page </h1><h3>Click here to go to the<a href='#bottom'>bottom</a> of the page.</h3> > > > <a name='bottom'><h3> You are at the bottom of the page.</h3></a></body></html>outputLinking Sections of DifferentWeb Pages Internal linking enables us to link sections of different Web pages also. It can be done by specifying the name of the Web page and the section which is to be linked. To link two Web pages, you first need the name to the section by using name attribute of <a> tag that you want to link. Suppose, we need to link a section of HTML1.html to HTML2.html. Create a named anchor in HTML1.html.The syntax is given below:<a name =”link”> Different Page </a>After this, you have to write the code to refer to it, from Web page HTML2.html.Following is the code to do so:<a href =”HTML1.html#link”>Here, HTMLl.html is the name of html file to the section of which you want to link and # link is the segment name you want to link in that html file.

Related questions

Description : A Web page is located using a (a) Universal Record Linking (b) Uniform Resource Locator -Technology

Last Answer : (b) URL (Uniform Resource Locator) specifies the location of a specific Web page on the Internet.

Description : Name the attributes of tag which are used for internal linking in a Web page. -Technology

Last Answer : The attributes of tag which are used for internal linking in a Web page as follows:1. href used to specify the URL of the segment the link goes to.2. name gives the name to the segment.

Description : Explain the need of linking between Web pages. -Technology

Last Answer : Linking between different Web pages is required, as when we create Websites, different HTML files (Web pages) are created. These files contain different modules and cannot be open individually. If we link between them, the Website becomes more productive and informative.

Description : Write an simple HTML code to show an example of internal linking. -Technology

Last Answer : Internal LinkingIt is top of the page Top

Description : Hyperlinks can also be created for links within the same document. Linking -Technology

Last Answer : False Linking within the same document is called internal linking.

Description : Explain linking. -Technology

Last Answer : When one Web page or a text fragment is connected to another Web page, then it is called linking.It is of two types:internal linking and external linking.

Description : In HTML, how linking can be done? -Technology

Last Answer : In HTML, linking can be done by using anchor tag followed by the href attribute.

Description : How is external linking different from internal linking? -Technology

Last Answer : The external link is a type of linking that goes to another Website. It is a linking of two different documents. While, internal linking is a type of linking that links pages within a single Website, various sections of the same document or different document.

Description : For internal linking, the section names are provided by attribute of tag. (a) title (b) href -Technology

Last Answer : (c) For internal linking, section names are provided by name attribute.

Description : An link............ allows a link to another section on the same or different Web page. -Technology

Last Answer : An linkinternal allows a link to another section on the same or different Web page.

Description : Facebook page- linking soundcloud things via apps?

Last Answer : answer:

Description : What's the correct syntax for linking to an HTML page on your local C: drive from an tag in a HTML page on your desktop?

Last Answer : try using \ instead of / for starters…

Description : On Internet, to go to other Web page through button, the user should use (a) Search tools (b) Find and replace -Technology

Last Answer : (d) On the Internet, to go to other Web pages available through a button, the user should use hyperlinks.

Description : When you copy a Web page or a file from a server to your local computer, this process is called (a) conferencing (b) downloading -Technology

Last Answer : (b) Because we store information from a server computer to a user computer.

Description : What is the method of viewing the source code of the current page in the Web browser? -Technology

Last Answer : Right click on the Web page and then select View Source from the context menu.

Description : While writing HTML code, how do you find out how your Web page would look like? -Technology

Last Answer : For this, open the HTML code file in a Web browser.

Description : How the font size of a single line on a Web page be changed? -Technology

Last Answer : The font size of a single line can be changed by using the following HTML code: This is a HTML text .

Description : Why do we insert comments in an HTML document, even though they are not displayed on a Web page? -Technology

Last Answer : So, that user will be able to understand coding effects and meaning.

Description : Which tag is used to insert heading of third level on a Web page? -Technology

Last Answer : tag is used to insert heading of third level on a Web page.

Description : Carefully study the Web page given here. Identify 10 tags -Technology

Last Answer : 1. . It encloses the entire HTML document and tells the browser that it is reading an HTML document and to display as such.2. It encloses the head of the HTML document and it is used to contain ... It is used to insert a horizontal line.10. .. This tag is used to align the text centrally.

Description : To create an HTML page, you need (a) text editor (b) Web browser -Technology

Last Answer : (c) Because text editor is required to write HTML code and the Web browser is needed to display the page.

Description : A Web page normally consists of (a) head and body (b) top and bottom -Technology

Last Answer : (a) From the given options, a Web page normally consists of head and body.

Description : In a Web page, you can place (a) 2 levels of headings (b) 6 levels of headings -Technology

Last Answer : (b) Web page provides six levels of headings.

Description : There should be only one tag in each Web page. -Technology

Last Answer : True A Web page contains necessarily one tag and one tag.

Description : What happens when we click on a hyperlink in a Web page? -Technology

Last Answer : When we click on a hyperlink in a Web page, it provides a link that leads from one document to another.

Description : Write the HTML command to display the following in your Web page. -Technology

Last Answer : The HTML command is – A2 + B2

Description : Write the output on the Web page for the following HTML command. -Technology

Last Answer : The output on the Web page will be the Atomic weight of O 2

Description : Write the HTML code to display an inline image named pencil.jpg located at C:\ in the center of your Web page. -Technology

Last Answer :

Description : Write the HTML code to send an E_mail to [emailprotected] from your Web page. -Technology

Last Answer : [emailprotected]

Description : Which tag is used to insert an image in Web page? -Technology

Last Answer : (c) tag is used to insert inline image in a Web page.

Description : The default alignment of images, that are inserted in Web page, is (a) left (b) right -Technology

Last Answer : (c) An image which is inserted in the Web page by default placed inline with text.

Description : The tag used in HTML to link a Web page with other Web page is (a) (b) -Technology

Last Answer : (a) anchor tag is used to create links.

Description : ………. attribute of the tag is used to name a section in a Web page to create an internal link. (a) href (b) name -Technology

Last Answer : (b) name attribute is used to create an internal link.

Description : An image to be displayed in a Web page has to cover 25% of the browser window horizontally and 50% vertically. -Technology

Last Answer : An image to be displayed in a Web page has to cover 25% of the browser window horizontally and 50% vertically. The attributes height and width of the tag would be used for achieving this.

Description : ………… is a word or image that when clicked take us to another Web page. -Technology

Last Answer : Hyperlink is a word or image that when clicked take us to another Web page.

Description : An ……….. link allows a link to another Web page or another Website. -Technology

Last Answer : An externallink allows a link to another Web page or another Website.

Description : The …………….. attribute of tag is used to provide information or a title for the linked document or Web page. -Technology

Last Answer : The title attribute of tag is used to provide information or a title for the linked document or Web page.

Description : You can have inserted an image in your Web page which is physically present in your computer. -Technology

Last Answer : True With the help of , we can insert an image in Web page which is present in our computer.

Description : The tag ……….. is used to create superscripts and …………. tag is used to create subscripts on a Web page. -Technology

Last Answer : The tag is used to create superscripts and tag is used to create subscripts on a Web page.

Description : If the image you are loading in the Web page is not available, -Technology

Last Answer : False The alt attribute is used to define text to appear in the image placeholder if image is not visible for any reason.

Description : You should include a mailto function in the body of your document to allow user to respond to your Web page. -Technology

Last Answer : True The mailto function is used to send E-mails from the Website.

Description : Combining two or more cells in a table on a Web page is called (a) merging (b) spanning -Technology

Last Answer : (b) Combining two or more cells in a table on a Web page is called spanning.

Description : Name the attributes of tag which are used for specifying its dimensions in a Web page. -Technology

Last Answer : width and height attributes of the tag are used for specifying its dimensions in a Web page, width and height are specified in terms of pixels or percentage of the browser window.

Description : Write the HTML code to generate the following table on a Web page with the contents and alignment exactly as shown below: -Technology

Last Answer : The HTML code is

Description : Write the HTML code to generate the following Web page:1. Link color is green, active link color is blue and visited link color is red. -Technology

Last Answer : The HTML code isEat healthy, live healthy KHAO PIYO RESTAURANTCollect Information for .MenusTours Menus available are 1 INDIAN 2 ITALIAN 3 CONTINENTAL 4 THAI < /tab1e> For further queries and reservation

Description : Observe the following Web page and write HTML code to generate it: 1. Background color of page is yellow. -Technology

Last Answer : The HTML code is INDIAN RHINOCEROSThe Indian rhinoceros lives primarily in northern India and Nepal. These massive beasts have some noticeable physical differences from their African relatives.Their segmented hide looks like a ... .5 ft; Height up to 6 ftWeight4,400 lbs (2,000 kgkg) For more Details

Description : Carefully study the Web page given below. Identify 10 tags (structural as well as formatting tags) that have been utilized -Technology

Last Answer : 1. to specify the title of the Web page.2. contains all the content that is to be displayed on the Web page and all the various formatting and structural tag.3. used to create an unordered ... anchor tag. Use the href attribute to provide the reference of the Web page that you want to hyperlink.

Description : Observe the following Web page and write HTML code to generate it.1. Title of the page is “Cleanliness” -Technology

Last Answer : IMPORTANCE OF CLEANLINESS IMPORTANCE OF CLEANINESS Cleanliness is not a work which we should do forcefully. It is a good habit and healthy way of our healthy life. All type of ... should be highly aware about now to maintain cleainless in our daily lives. Factors affecting the environment

Description : Carefully study the Web page given below. Identify 10 tags (structural as well as formatting tags) that have been utilized in creating this -Technology

Last Answer : 1. to specify title of the Web page.2. contains all the text content that is to be displayed on Web page and all the various formatting and structural tag.3. defines the most important and biggest ... provide caption to the table.9. used to create a table row.10. used to define data cells.

Description : To insert a table on a Web page, we use ………………. tag. -Technology

Last Answer : To insert a table on a Web page, we use tag.