upler question answer html
upler question answer html
The <meta> tag is placed within the <head> tag, and it can be
used more than one times in a document.
Q7-What is HTML?
The full form of HTML stands for Hypertext Markup Language and it also allows
the user to create and structure sections, paragraphs, headings, links, and
blockquotes for web pages and applications. Which is used for more interactive
dynamic page.
Q8-What are tag?
HTML tags are composed of three things: an opening tag, content and
ending tag. Some tags are unclosed tags.
o content, and
o tags
When a web browser reads an HTML document, the browser reads it from
top to bottom and left to right. HTML tags are used to create HTML
documents and render their properties.
VALUE DESCRIPTION
_self Opens the page in the same tab/window. This is the default.
_blank Opens the page in a new tab.
_parent Opens the page in the parent iframe. In the same iframe if there is
_top Opens the page in the topmost part of the iframe. In the same ifra
no topmost.
framename Opens the page in a named iframe.
Using HTML Tag. – if we want to change the font of text using html
tag which is To be displayed on a web page.so now first of all we are
write our boilerplate
Code in html. that will be something like this. Doctype html, HTML,
head, and
Body tag use with open tag and end of closing tag. Suppose we are
writing
Heading for web page .and want to do change font of heading. Ten
we are using <font></font. Within the heading tag. After that font will be
change…….
Q26-What is vs code?
Visual Studio Code, Abbreviated as VS code is coding
application for html with in built features and extension to boot
the coding experience of developer.
Among the many extensions that our VS Code hosts, a live server extension is
one of them.
Usually, when we are coding & we need to see the changes live, we have to
reload the page manually. We code 1 line, and we refresh it once. This
process is repeated over & over again till we are done making changes & our
project is ready. It can be tiring. But not with the live-server extension.
Now the leftmost side. there are 4 icon that serve different purposes.
The icon below the run and debug icon gives us to chance to download
and investigate all extensions.
Q28-What is list-style-type?
This attribute is used to specifies the bullet style. That will be
used as the list item maker. the value of attribute is
NON/Disc/Circle/square.
Example:
You should always specify the type attribute for a <button> tag. Different
browsers use different default type for the button element.
HTML Button tag can be used inside and outside the form.
If you use it inside the form, it works as the submit button. You can also
use it as reset button.
If you use it outside the form, you can call JavaScript function on it.
Q32- What is used of Division tag HTML?
Footer: Footer located at the bottom of any article or document, they can
contain contact details, copyright information etc. There can be multiple
footers on a page.
Main: It defines the main content of the document. The content inside
main tag should be unique.
Non-Semantic Elements: Tags like div, span fall under the non-
Semantic categories as their names don’t tell anything about what
kind of content is present inside them.
span: It is an inline element which doesn’t start on a new line and takes up
only the necessary width. For more details
use https://www.geeksforgeeks.org/span-tag-html/.
Supported Browsers:
Q43-What is HTML?
HTML stands for Hypertext Markup Language. It is used to design web
pages using a markup language. It is a combination of Hypertext and
Markup language. HTML uses predefined tags and elements that tell
the browser how to properly display the content on the screen.
Note: The value attribute defines the unique value associated with
each radio button. The value is not shown to the user, but is the value
that is sent to the server on "submit" to identify which radio button
that was selected.
In the HTML form, submit button is used to submit the details of the
form to the form handler. A form handler is a file on the server with a
script that is used to process input data.
In the HTML form, a text area is used to add comments or reviews, or addresses
in the form. Or in other words, the text area is a multi-line text input control. It
contains an unlimited number of characters, and the text renders in a fixed-width
font and the size of the text area is given by the <rows> and <cols> attributes.
To create a text area in the form use the <text area> tag.
The <legend> tag is used to define the title for the child’s contents. The legend
elements are the parent element. This tag is used to define the caption for the
<fieldset> element.
The legend tag is used to define the title for the child contents. The
legend elements are the parent element. This tag is used to define the
caption for the <fieldset> element.
The pre tag used to define the block of formatted text, which preserve the
text space, line breck tab and other character which are ignore by web
browser .Text in the <pre> element is displayed in the fixed width
font ,but it can be change using Css.pre tag require a starting and end tag
..
The HTML span element is generic inline container for inline element and
content .it is used to group element for styling purpose . span is always
start with open tag and Closing tag.
Span is very similar to the div tag but div is block level tag and Span is
Inline Tag….
Q53-What is Different between GET and POST?
Both GET and POST Method is used data transfer from client to server in
HTTP Protocol BUT Main different between GET and POST Method is that
get carries request parameter appended in url string While post carries
request parameter in massage body which makes it more secure way of
transferring data from client to server.in case of get request only limited
amount of data can be sent because data is sent in header .in case of post
request large amount of data can be send because data is send in body .
The Advantage of using frames that allows multiple document to be viewed with
the single web page Easier navigation and static navigation can be kept visible
on the website at all time ..
The marquee tag is used non -standard HTML element Which is used to Scroll a
Image or text Horizontally or vertically.
Inline element Occupy only enough width that is sufficient to it and allow other
element next to it which are inline .. Inline element don’t start from a new line
and don’t have top bottom and margins as block element have <a> ,<br> ,
<script > <input> ,<img> , <span> , <b>….
Visibility: hidden hide the element, but it skill take up space in the lay out ,
display :none removes the element from the document it does not take up any
space ..
Space Cellpadding basically define the space present between a table cells
border and the content present in it.
Cell spacing basically define the space present between individual adjacent cell ..
The default cell padding value =1 Where the Default Cell spacing Value is 2