• Complain

Mondal - HTML & CSS Questions & Answers: For Interview, Students, Competitive Exams

Here you can read online Mondal - HTML & CSS Questions & Answers: For Interview, Students, Competitive Exams full text of the book (entire story) in english for free. Download pdf and epub, get meaning, cover and reviews about this ebook. year: 2019, genre: Computer. Description of the work, (preface) as well as reviews are available. Best literature library LitArk.com created for fans of good reading and offers a wide selection of genres:

Romance novel Science fiction Adventure Detective Science History Home and family Prose Art Politics Computer Non-fiction Religion Business Children Humor

Choose a favorite category and find really read worthwhile books. Enjoy immersion in the world of imagination, feel the emotions of the characters or learn something new for yourself, make an fascinating discovery.

No cover
  • Book:
    HTML & CSS Questions & Answers: For Interview, Students, Competitive Exams
  • Author:
  • Genre:
  • Year:
    2019
  • Rating:
    5 / 5
  • Favourites:
    Add to favourites
  • Your mark:
    • 100
    • 1
    • 2
    • 3
    • 4
    • 5

HTML & CSS Questions & Answers: For Interview, Students, Competitive Exams: summary, description and annotation

We offer to read an annotation, description, summary or preface (depends on what the author of the book "HTML & CSS Questions & Answers: For Interview, Students, Competitive Exams" wrote himself). If you haven't found the necessary information about the book — write in the comments, we will try to find it.

Mondal: author's other books


Who wrote HTML & CSS Questions & Answers: For Interview, Students, Competitive Exams? Find out the surname, the name of the author of the book and a list of all author's works by series.

HTML & CSS Questions & Answers: For Interview, Students, Competitive Exams — read online for free the complete book (whole text) full work

Below is the text of the book, divided by pages. System saving the place of the last page read, allows you to conveniently read the book "HTML & CSS Questions & Answers: For Interview, Students, Competitive Exams" online for free, without having to search again every time where you left off. Put a bookmark, and you can go to the page where you finished reading at any time.

Light

Font size:

Reset

Interval:

Bookmark:

Make
HTML CSS Questions Answers For Interview Students Competitive Exams - photo 1
HTML & CSS Questions & Answers For Interview, Students, Competitive Exams
Editor
Swawon Mondal
Table of Content
HTML. 1
CSS. 43
What is HTML?
Ans: HTML stands for Hyper Text Markup Language. It is a language of World Wide Web. It is a standard text formatting language which is used to create and display pages on the Web. It makes the text more interactive and dynamic. It can turn text into images, tables, links.
What are Tags?
Ans: HTML tags are composed of three things: an opening tag, content and ending tag. Some tags are unclosed tags.
HTML documents contain two things:
  • content, and
  • 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. Each HTML tags have different properties.
Syntax
content
Content is placed between tags to display data on the web page.
3. Do all HTML tags have an end tag?
Ans: No. There are some HTML tags that don't need a closing tag. For example: tag,
tag.
4. What is formatting in HTML?
Ans: The HTML formatting is a process of format the text for a better look and feel. It uses different tags to make text bold, italicized, underlined.
5. How many types of heading does an HTML contain?
Ans: The HTML contains six types of headings which are defined with the
to
tags. Each type of heading tag displays different text size from another. So,
is the largest heading tag and
is the smallest one. For example:
  1. Heading no. 1
  2. Heading no. 2
  3. Heading no. 3
  4. Heading no. 4
  5. Heading no. 5
  6. Heading no. 6
6. What are some common lists that are used when designing a page?
Ans: There are many common lists which are used to design a page. You can choose any or a combination of the following list types:
  • Ordered list - The ordered list displays elements in numbered format. It is represented by
      tag.
  • Unordered list - The unordered list displays elements in bulleted format. It is represented by
      tag.
  • Definition list - The definition list displays elements in definition form like in dictionary. The , and tags are used to define description list.
7. What is the difference between HTML elements and tags?
Ans: HTML elements communicate to the browser to render text. When the elements are enclosed by brackets <>, they form HTML tags. Most of the time, tags come in a pair and surround content.
8. What is semantic HTML?
Ans: Semantic HTML is a coding style. It is the use of HTML markup to reinforce the semantics or meaning of the content. For example: In semantic HTML tag is not used for bold statement as well as tag is used for italic. Instead of these we use and tags.
9. What is an image map?
Ans: Image map facilitates you to link many different web pages using a single image. It is represented by tag. You can define shapes in images that you want to make part of an image mapping.
10. How to insert a copyright symbol on a browser page?
Ans: You can insert a copyright symbol by using or in an HTML file.
11. How to create a nested webpage in HTML?
Ans: The HTML iframe tag is used to display a nested webpage. In other words, it represents a webpage within a webpage. The HTML tag defines an inline frame.
For example:
    >
  1. HTML Iframes example
  2. Use the height and width attributes to specify the size of the iframe:

  3. src = "https://www.google.com/" height = "300" width = "400" >
12. How do you keep list elements straight in an HTML file?
Ans: You can keep the list elements straight by using indents.
13. Does a hyperlink only apply to text?
Ans: No, you can use hyperlinks on text and images both. The HTML anchor tag defines a hyperlink that links one page to another page. The "href" attribute is the most important attribute of the HTML anchor tag.
Syntax
  1. href = "..........." > Link Text
14. What is a style sheet?
Ans: A style sheet is used to build a consistent, transportable, and well-designed style template. You can add these templates on several different web pages. It describes the look and formatting of a document written in markup language.
15. Can you create a multi-colored text on a web page?
Ans: Yes. To create a multicolor text on a web page you can use for the specific texts you want to color.
16. Is it possible to change the color of the bullet?
Ans: The color of the bullet is always the color of the first text of the list. So, if you want to change the color of the bullet, you must change the color of the text.
17. What is a marquee?
Ans: Marquee is used to put the scrolling text on a web page. It scrolls the image or text up, down, left or right automatically. You should put the text which you want to scroll within the ...... tag.
18. How many tags can be used to separate a section of texts?
Ans: Three tags are used to separate the texts.

  • tag - Usually
    tag is used to separate the line of text. It breaks the current line and conveys the flow to the next line
  • tag - The

    tag contains the text in the form of a new paragraph.

  • tag - It is used to define a large quoted section. If you have a large quotation, then put the entire text within ............. tag.
19. How to make a picture of a background image of a web page?
Ans: To make a picture a background image on a web page, you should put the following tag code after the tag.
  1. background = "image.gif" >
Here, replace the "image.gif" with the name of your image file which you want to display on your web page.
20. What are empty elements?
Ans: HTML elements with no content are called empty elements. For example:
,
etc.
21. What is the use of a span tag? Give one example.
Ans: The span tag is used for following things:
  • For adding color on text
  • For adding background on text
  • Highlight any color text
Example:
  1. style = "color:#ffffff;" >
  2. In this page we use span.

22. What is the use of an iframe tag?
Ans: An iframe is used to display a web page within a web page.
Syntax:
  1. src = "URL" >
Example:
  1. src = "demo_iframe.html" width = "200px" height = "200px" >
Target to a link:
  1. src = "http://www.javatpoint.com" name = "iframe_a" >
23. What are the entities in HTML?
Ans: The HTML character entities are used as a replacement for reserved characters in HTML. You can also replace characters that are not present on your keyboard by entities. These characters are replaced because some characters are reserved in HTML.
24. Why is a URL encoded in HTML?
Ans: An URL is encoded to convert non-ASCII characters into a format that can be used over the Internet because a URL is sent over the Internet by using the ASCII character-set only. If a URL contains characters outside the ASCII set, the URL has to be converted. The non-ASCII characters are replaced with a "%" followed by hexadecimal digits.
Next page
Light

Font size:

Reset

Interval:

Bookmark:

Make

Similar books «HTML & CSS Questions & Answers: For Interview, Students, Competitive Exams»

Look at similar books to HTML & CSS Questions & Answers: For Interview, Students, Competitive Exams. We have selected literature similar in name and meaning in the hope of providing readers with more options to find new, interesting, not yet read works.


Reviews about «HTML & CSS Questions & Answers: For Interview, Students, Competitive Exams»

Discussion, reviews of the book HTML & CSS Questions & Answers: For Interview, Students, Competitive Exams and just readers' own opinions. Leave your comments, write what you think about the work, its meaning or the main characters. Specify what exactly you liked and what you didn't like, and why you think so.