You are on page 1of 8

Explain Following CSS Properties.

CSS Borders CSS3 Rounded Corners


CSS Responsive
CSS Margins CSS3 Border Images
RWD Viewport
CSS Padding CSS3 Backgrounds
RWD Grid View
CSS Tables CSS3 Colors
RWD Media Queries
CSS Box Model CSS3 Gradients
RWD Images
CSS Display CSS Max- CSS3 Shadows
width CSS Tables
CSS3 2D Transforms
CSS Position CSS Images
CSS3 Transitions
CSS Float CSS Pagination
CSS3 Animations
CSS Align CSS Selectors
CSS3 Buttons
CSS Combinators CSS Web Safe Fonts
CSS3 Multiple
CSS Pseudo-element Columns CSS Animatable

CSS Navigation Bar CSS3 User Interface CSS Color Values

CSS Image Opacity CSS3 Box Sizing CSS Color Groups

CSS Image Sprites CSS3 Flexbox CSS versus CSS 3

CSS Attr Selectors CSS3 Filters HTML Versus XHTML

CSS Counters CSS3 Media Queries

align-content animation-iteration- background-blend-


align-items count mode
align-self animation-name background-clip
all animation-play-state background-color
animation animation-timing- background-image
animation-delay function background-origin
animation-direction backface-visibility background-position
animation-duration background background-repeat
animation-fill-mode background-attachment background-size
border
border-bottom bottom @font-face
border-bottom-color box-shadow font-family
border-bottom-left- box-sizing font-size
radius caption-side font-size-adjust
border-bottom-right- clear font-stretch
radius clip font-style
border-bottom-style color font-variant
border-bottom-width column-count font-weight
border-collapse column-fill hanging-punctuation
border-color column-gap height
border-image column-rule justify-content
border-image-outset column-rule-color @keyframes
border-image-repeat column-rule-style left
border-image-slice column-rule-width letter-spacing
border-image-source column-span line-height
border-image-width column-width list-style
border-left columns list-style-image
border-left-color content list-style-position
border-left-style counter-increment list-style-type
border-left-width counter-reset margin
border-radius cursor margin-bottom
border-right direction margin-left
border-right-color display margin-right
border-right-style empty-cells margin-top
border-right-width filter max-height
border-spacing flex max-width
border-style flex-basis @media
border-top flex-direction min-height
border-top-color flex-flow min-width
border-top-left-radius flex-grow nav-down
border-top-right-radius flex-shrink nav-index
border-top-style flex-wrap nav-left
border-top-width float nav-right
border-width font nav-up
opacity perspective-origin top
order position transform
outline quotes transform-origin
outline-color resize transform-style
outline-offset right transition
outline-style tab-size transition-delay
outline-width table-layout transition-duration
overflow text-align transition-property
overflow-x text-align-last transition-timing-
overflow-y text-decoration function
padding text-decoration-color unicode-bidi
padding-bottom text-decoration-line vertical-align
padding-left text-decoration-style visibility
padding-right text-indent white-space
padding-top text-justify width
page-break-after text-overflow word-break
page-break-before text-shadow word-spacing
page-break-inside text-transform word-wrap
perspective z-index

Quiz HTML :

Multiple Choice HTML interview questions and Answers:

1.What does HTML stand for?

 Hyperlinks and Text Markup Language


 Home Tool Markup Language
 Hyper Text Markup Language

2.Who is making the Web standards?

 Mozilla
 Microsoft
 The World Wide Web Consortium
3.Choose the correct HTML tag for the largest heading

 <h6>
 <heading>
 <head>
 <h1>

4.What is the difference between XML and HTML?

 HTML is used for exchanging data, XML is not.


 XML is used for exchanging data, HTML is not.
 HTML can have user defined tags, XML cannot

5.What is the correct HTML tag for inserting a line break?

 <br />
 <break />
 <lb />

6.Can a data cell contain images?

  Yes
  No

7.How do I add scrolling text to my page?

 <scroll>
 <marquee>
 <ciruler>

8.What is the preferred way for adding a background color in HTML?

 <body background="yellow">
 <background>yellow</background>
 <body style="background-color:yellow">    

9.What does vlink mean ?

 visited link
 vlink
 active link

10.Is width=”100” and width=”100%” the same?

 Yes
 No

11.Choose the correct HTML tag to make a text bold

 <bold>
 <b>
12.Choose the correct HTML tag to make a text italic

 <i>
 <italic>

13.What is extension of html file  ?

  html
  xml
  xhtml

14.What is the correct HTML for creating a hyperlink?

 <a name="">A</a>
 <a>B</a>
 <a href="http://www.example.com">example</a>
 <a url="http://www.example.com">example</a>     

15.How can we resize the image?

 Using size attribute


 Using height and width

16.How can you create an e-mail link?

 <mail href="a@b">
 <mail>a@b</mail>
 <a href="a@b">
 <a href="mailto:a@b.com">
 
17.How can you open a link in a new browser window?

 <a href="url" new>


 <a href="url" target="new">
 <a href="url" target="_blank">

18.Which of these tags are all <table> tags?

 <table><head><tfoot>
 <table><tr><td>
  <table><tr><tt>
 <thead><body><tr>

19.Choose the correct HTML to left-align the content inside a tablecell

 <td valign="left">
 <tdleft>
 <td leftalign>
 <td align="left">

20.How can you make a list that lists the items with numbers?

 <ul>
 <list>
 <ol>
  <dl>

21.How can you make a list that lists the items with bullets?

 <ol>
 <list>
 <ul>
 <dl>

22.What is the correct HTML for making a checkbox?

 <checkbox>
 <input type="checkbox" />
 <input type="check" />
 <check>

23.What is the correct HTML for making a text input field?

 <input type="textfield" />


 <textinput type="text" />
 <textfield>
 <input type="text" />

24.What is the correct HTML for making a drop-down list?

 <input type="list" />


 <select>
 <list>
 <input type="dropdown" />

25.What is the correct HTML for making a text area?

 <input type="textarea" />


 <input type="textbox" />
 <textarea>

26.What is the correct HTML for inserting an image?

 <image src="image.gif" alt="MyImage" />


 <img href="image.gif" alt="MyImage" />
 <img src="image.gif" alt="MyImage" />
 <img alt="MyImage">image.gif</img>
 Ans: <img src="image.gif" alt="MyImage" />

-------------------------------------------------------------------
27.What is the correct HTML for inserting a background image?

 <img src="background.gif" background />


 <body background="background.gif">
 <background img="background.gif">

Ans: <body background="background.gif">

-------------------------------------------------------------------
28.When you count to 15 using hexadecimal numbers, the highest number is what ?

  F
  B
  15

Ans: F
-------------------------------------------------------------------
29.What is the REFRESH meta tag used for ?

  Refresh your content


  Redirect to a new domain
  rewrite url 

Ans: Redirect to a new domain

-------------------------------------------------------------------
30.colspan=n can be added to only what tag?

 <table>
 <td>
 <tr>

Ans:<td>
-------------------------------------------------------------------
31.What tag adds a paragraph break after the text ?

  <PARAGRAPH>
  <P>
  <BR>

 Ans:<P>
-------------------------------------------------------------------

32.All HTML tags are enclosed in what ?

   <>
  <?php and ?>
  # and #
  <!-- and -->

Ans: <>

You might also like