HTML5 & CSS3 Questions

HTML & HTML5 Questions



Q. What is HTML?
HTML stands for HyperText Markup Language. It is the most popular markup language for creating websites that can be viewed in a web browser.

Q. What is the difference between HTML elements and tags?
HTML elements communicate to the browser how to render text. When surrounded by angular brackets <> they form HTML
tags, which come in pairs and surround text.

Q. What does DOCTYPE mean?
The term DOCTYPE means Document Type Definition and tells the browser which type of HTML is used on a webpage. Browsers use DOCTYPE to determine how to render a page. Failing to use DOCTYPE will load your page in Quirks Mode.

Q.What are the limitations when serving XHTML pages?
The main limitation is the poor browser support of XHTML. Internet Explorer and other user agents cannot parse XHTML as XML. Thus, it is not that extensible language as one might think.

Q. What is the syntax difference between a bulleted list and numbered list?
Bulleted lists use the <ul> tag, which stands for “unordered,” whereas <ol> is used to create an ordered list.

Q. What is the difference between a <div> and a <frame>?
A <div> is a container element for grouping and styling, whereas a <frame> creates divisions within a web page and should be
used within the <frameset> tag. The use of <frame> and <frameset> are no longer popular and are now being replaced with the more flexible <iframe>, which has become popular for embedding elements from other websites (ie. Youtube videos) into a page.

Q. What is the difference between the application model of HTML and HTML5?
There is not a big difference between the two. HTML5 is a continuum of HTML. There has been no major paradigm shift. From a broader viewpoint, HTML was a simple language for laying out text and images on a webpage, whereas HTML5 can
be viewed as a development platform that does what HTML does that and more, including better support for audio, video, and interactive graphics. It has a number of new elements, supports offline data storage for applications, and has more robust exchange protocols.

Q. What are some new HTML5 markup elements?
Among several:

  • <article>, 
  • <aside>, 
  • <bdi>, 
  • <command>, 
  • <details>, 
  • <figure>, 
  • <figcaption>, 
  • <summary>, 
  • <header>, 
  • <footer>,
  • <hgroup>, 
  • <mark>, 
  • <meter>, 
  • <nav>, 
  • <progress>, 
  • <ruby>, 
  • <rt>, 
  • <section> and 
  • <time>.


Q. What are the new image elements in HTML5?
The new image elements in HTML5 are Canvas and WebGL. <canvas> is a new element that acts as a container for graphical elements like images and graphics. WebGL stands forWeb Graphics Language, a free cross-platform API that is used for creating 3D graphics in web browsers.

Q. What are data- attributes good for?
data- attribute is used to assigns custom data to an element. The stored (custom) data can then be used in the page’s JavaScript to create a more engaging user experience.

Q. Describe the difference between cookies, sessionStorage, and localStorage.
Cookies are small text files that websites place in a browser for tracking or login purposes, and hold a modest amount of data. Meanwhile, localStorage and sessionStorage are new objects, both of which are storage specifications but vary in scope and duration. Local storage is more secure, and large amounts of data can be stored locally, without affecting website performance.
Futher more, is it permanent. sessionStorage only lasts as long as the duration of the longest open tab.

Q. What are some of the major new API’s that come standard with HTML5?
Among others: Media API, Text Track API, Application Cache API, User Interaction, Data Transfer API, Command API, and the History API.

Q. What is the difference in caching between HTML5 and the old version of HTML?
An crucial new feature of HTML5 is the Application Cache which creates an offline version of a web application. and stores website files such as HTML files, CSS, images, and JavaScript, locally. Obviously, that speeds up site performance.

Q.What is image map?
An image map is a list of coordinates relating to a specific image, created in order to hyperlink areas of the image to different
destinations (as opposed to a normal image link, in which the entire area of the image links to a single destination).

Q. What is the advantage of collapsing white space?
White spaces are blank sequences of space characters, which is actually treated as a single space character in HTML. The browser
collapses multiple space into a single space, so we can indent lines of text without worrying about multiple spaces. This enables us to organize the code into a much more readable format.

Q. Do all HTML elements need both opening and closing tags?
Not really, elements like <img src=""/> or <input type=""/> don’t need a closing tag.

Q. What is a marquee?
A marquee is used to enable scrolling text in a web page. To do this, just place whatever text you want to appear scrolling within the <marquee> and </marquee> tags.

Q. How do you create links to sections within the same page?
Links can be created using the <a> tag, with referencing through the use of the # symbol. For example, we can have:
<a href="#top">BACK TO TOP</a>
which would result in the words “BACK TO TOP” appearing on the webpage and links to a bookmark named top. We can then
create a separate tag like:
<a name=top></a>
somewhere on the same webpage so that the user will be linked to that place when clicking on

CSS Questions

Q. What are the possible ways to apply CSS styles to a web page?
CSS can be applied in the following three ways:
   • Linked: Create a separate .css file and add all the style for the web page there. Make sure the file is linked to the HTML document(s) using the link tag
   • Embedded: Inside the HTML document, open a style tag and inside that, add all styles just like you’d do on a linked file.
   • Inline: This is done by adding a style attribute inside an HTML element.

Q. Explain the CSS box model.
CSS box model is made up of margins, borders, padding, and content. The box model provides a more structured way to space elements in relationship to each other in web pages. In your browser’s developer tools, the CSS box model is found at the end of the CSS section and it looks like this:

Q. What is the difference between inline and block elements?
Basically, a block element will take up the whole width available, and comes with a line break before and after. Examples of block level elements are: headings (i.e <h1>), paragraphs (<p>), divisions (<div>) etc. In contrast, inline elements take up only
the space they need, and do not force line breaks. Examples of inline elements are: anchors (<a>), spans (<span>) etc.

Q. What is grouping used for in CSS?
Grouping allows several elements of HTML to have the very same styles applied. It uses a single declaration and selectors and
separated by commas.
For example:
       h1, h2, .my-class {
                   font-weight: light;
                   }

Q. What is a Class selector and how does it differ from an ID selector?
Class selectors are used to apply style to multiple HTML elements identified with the same class. Class selectors are called
within the CSS document by a ‘.’, followed by the class name, like this:
.class {
color: black;
}

Q. What is the difference between visibility:hidden and display:none?
Although these two properties seem similar, there is quite an important difference between the two:
   • visibility: hidden hides the element, but it will still takes up space, this way affecting the layout of the document.
   • display: none also hides the element, but will not take up space and the page will appear as if the element is not present.

Q. What are CSS preprocessors and why do we use them?
CSS preprocessors convert code written in a preprocessed language like SASS or LESS into the same old CSS we’ve been using
for such a long time now. The main advantages of using preprocessors are:
   • Ability to define variables
   • Ability to use nested syntax
   • Ability to create and use mixins (functions)
   • Use of mathematical and operational functions
However, there are also some disadvantages like updating issues and debugging difficulties.

Q. What are child selectors in CSS?
Child selectors represent a way of grouping (for styling) a set of elements that descend from a parent element. Example:
section > span {
background-color: #eee;
}

Q. What are grid systems and why do we use them in web pages?
Grid systems are structured rules that enable content to be stacked horizontally and vertically in a consistent and sustainable way. They find heavily usage in today’s websites because they offer increased producitvity while coding, they’re versatile and ideal for responsive layouts.

Q. How do we use shorthand properties and why?
Shorthand properties cannot be applied to any css property but only a few like: border, outline, padding, background etc. Shorthand properties reduce file size thus improving page load time. The trick stands for listing all property values on a single line, in a pre defined order that must be respected. An example would be:
div {
background-color: #ccc;
background-image: url("img.png");
background-repeat: no-repeat;
background-position: right top;
}
This would be exactly the same as:
div {
background: #ccc url("img.png") no-repeat right top;
}

Q. What is the purpose of the z-index and how is it used?
The z-index property specifies the stack order of an element within the document area (or a part of it). An element with greater stack order will always be in front of an element with a lower stack order. However, z-index only works on positioned elements
(position:absolute, position:relative, or position:fixed).
It can have four kind of values:
   • Auto: Sets the stack order equal to its parents.
   • Number: Orders the stack order.
   • Initial: Sets this property to its default value (0).
   • Inherit: Inherits this property from its parent element.

Q. List some of the new CSS propertied introduced with CSS3?
The following is a list of new properties added in CSS3:
   • border-radius
   • box-shadow
   • text-shadow
   • text-stroke
   • background-size
   • text-overflow
   • resize
   • transition
Also, other features like multiple backgrounds which allows you to have two or more background in the very same selector and flexible box model which ensures that elements behave predictably when the page layout must accommodate different screen sizes and different display devices.

Q. Explain what pseudo-classes are and their usage.
Pseudo clasess are used to define a special state of an element. Do note that pseudo classes are not defined in the markup.
They can be used for:
   • Styling an element on mouse over (hover)
   • Styling an element when it gets focus
   • Styling visited/unvisited links

Q. What is the CSS selector which allows you to target every element in a web page?
Called the universal selector and signed with an asterix (*), it sets all HTML element the same styling rules as defined in the property declarations. For example:
* {
margin: 0;
padding: 10px;
}

Q. What are media queries and how are they used?
A media query consists of a media type and at least one expression that limits the style sheets’ scope by using media features, such as width, height, and color. Media queries, added in CSS3, let the presentation of content be tailored to a specific range of output devices without having to change the content itself. The usage of media queries is similar to this:
@media (max-width: 768px) {
.problem-class {
property: smaller;
}
}
Share:

No comments:

Post a Comment

Popular Posts

Featured Post

JavaScript

JavaScript is a lightweight, interpreted programming language. It is designed for creating network-centric applications. It is compliment...

Search This Blog

Blog Archive

About


We are committed to excellence where students are encouraged to achieve their ideas, develop their full potential and make the best use of their skills and aptitudes.

Facebook Page

Recent Posts