Question

11 -     What does   target=”main_section”   do? in html css?

11 -     What does   target=”main_section”   do? in html css?

Homework Answers

Answer #1

HTML target attribute specifies where to open the linked document.

It mainly used with anchor tag <a> and form tag <form>

target attribute can take values as below:

_blank: opens the linked document in new window

_self: opens the linked document in the same frame

_parent: opens the linked document in parent frame

_top: opens the linked document in the full body of the window

framename: opens the linked document in specified frame name

Here, target=”main_section”

So linked will be opened in frame named main_section

Know the answer?
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for?
Ask your own homework help question
Similar Questions
Question: Create a row of 5 responsive images of HTML and CSS.
Question: Create a row of 5 responsive images of HTML and CSS.
What does the following CSS statement do? <a><img src=”x.jpg”></a>
What does the following CSS statement do? <a><img src=”x.jpg”></a>
Create an external style sheet and link it to an html file. Use css to style...
Create an external style sheet and link it to an html file. Use css to style the page and table. I don't want it to look like the default browser styling on anything. Use your own css, don't use the defaults from a css framework like bootstrap. Add some appropriate headlines, titles, and any other content you think is appropriate to the document. Get data from here: http://pds.jpl.nasa.gov/planets/special/planets.htm Use any 4 of the full planets (not pluto or small bodies)....
<p> Welcome to IT401 and CS407. Here we learn about HTML, CSS and JavaScript.For more Information,...
<p> Welcome to IT401 and CS407. Here we learn about HTML, CSS and JavaScript.For more Information, <a href="https://click.com">Click Here</a> </p> Using CSS Only, create a style to include the word (secure) with green font color after the hyperlink Click Here.
use CSS, java and HTML to make a charity admin page. It's a web page after...
use CSS, java and HTML to make a charity admin page. It's a web page after you log in to your account. I can have personal information, the amount of money donated, the children who have received charity, and some blogs. In fact, all the things are what I want. But you are free to do whatever You like, even if you don't say what I say. I just need a charity Admin page for charity User.Don't ask me for...
using HTML JAVA AND CSS all embeded on one page. create a page with some black...
using HTML JAVA AND CSS all embeded on one page. create a page with some black paragraph text against a white background, on the page pu a button labeled night mode. when the button is clicked the backgrournd should turn black all text should be white. when the button is initially clicked, the text should change to say "day mode"
(javascript/css/html) Follow these steps to implement the following browser-based puzzle game: 1. Get a photo of...
(javascript/css/html) Follow these steps to implement the following browser-based puzzle game: 1. Get a photo of yourself and save it as an image file 2. Use a image-splitting program such as splitter.imageonline.co to break the image into 9 roughly equal parts (3 x 3). Save those files in a directory 3. Write Javascript that takes these nine images and randomly rearranges them in a 3 x 3 grid. 4. Each cell in the grid will also have a checkbox. 5....
Create a webpage with CSS Box Model: Create a basic web page using the 5 required...
Create a webpage with CSS Box Model: Create a basic web page using the 5 required html tags. Add paragraph tags and enclosed them with a div element. Using the CSS Box Model, style the div element to have a total width of 350px and a height of 250px. It should have 10px padding on all sides, a gray border of 5px on all sides, and 15px margins on both sides but none on the top and bottom. Add a...
11. 4.21 (What Does this Program Do?) What does the following program print? 1 // Exercise...
11. 4.21 (What Does this Program Do?) What does the following program print? 1 // Exercise 4.21: Mystery2.cpp 2 #include <iostream> 3 using namespace std; 4 5 int main() { 6 unsigned int count{1}; 7 8 while (count <= 10) { 9 cout << (count % 2 == 1 ? "****" : "++++++++") << endl; 10 ++count; 11 } 12 }
To create your own while loop using PHP and HTML via Notepad++. Your while loop does...
To create your own while loop using PHP and HTML via Notepad++. Your while loop does not have to completely function, meaning it doesn't have to process a lot, just create the loop along with some other mini things in HTML like a few outputs when run