Showing posts with label #web designing. Show all posts
Showing posts with label #web designing. Show all posts

Saturday, September 7, 2019

Can you explain "visibility:hidden" and "display:none"?

Display:none - means that the tag in question will not appear on the page at all (although you can still interact with it through the dom). There will be no space allocated for it between the other tags.

visibility:hidden means that unlike display:none, the tag is not visible, but space is allocated for it on the page. The tag is rendered, it just isn't seen on the page.



For example:
test | <span style="[style-tag-value]">Appropriate style in this tag</span> | test
Replacing [style-tag-value] with display:none results in:
test |   | test
Replacing [style-tag-value] with visibility:hidden results in:
test |                        | test



Back to Questions: Can you explain "visibility:hidden" and "display:none"? - "Can you explain "visibility:hidden" and "display:none"?"

Wednesday, May 15, 2019

What are the new media components that are incorporated in to HTML5?






The most important elements of html5 are 
  1. semantic elements
  2. attributes of form elements
  3. graphic elements
  4. multimedia elements

In that, new media elements are 
  • <audio>   : for sound, music or other sound streams
  • <video>   : for feature a picture or other feature streams
  • <source> : for media components, 
  • <track>    : for content tracking 






Wednesday, March 6, 2019

Latest Web Designing Platforms 2019




Languages used for WEB DESIGNING are basically :-

  1. HTML
  2. CSS
  3. JavaScript
  4. PHP



HTML is Hyper Text Markup Language is the standard markup language for base template. It is well organized and easy to understand.

CSS is Cascading Style Sheet language used for describing the presentation of a document written in HTML. It is mainly used to Styling. 

JavaScript often abreviated as JS, is a high level interpreted programming language. It support Functionality.

PHP is Hypertext Preprocessor Programming language originally designed for web development. 








Back to Questions - Are you really helpful this post ::" Latest Web Designing Platforms 2019"?


Latest Web Designing Interview Questions & Answers 2019

For Freshers and new job seekers will be very helpful these interview questions. Interview questions are related to Web Designing. The main aim of this post is to make aware of some latest updates and for well knowledge.


Try to read some of our questions on before you sit in a interview panel. A web designing career is pretty job which you selected. Try not to stress, make always update yourself with latest designs, technology and new ideas. A Web Designer job is waiting for you..........
Latest Web Designing Interview Questions & Answers 2019

Latest Web Designing Interview Questions & Answers 2019

1.   Mention some of the leading languages or platforms that is used for Web Designing?
2.   Why do you select your career as Web Designer? Did anyone prefer to you?
3.   What are the new media components that are incorporated in to HTML5?
4.   Do you heard about CSS Float? Can you explain?
5.   What is the difference between HTML tags and elements?
6.   What is the purpose of CSS file?
7.   Can you explain "visibility:hidden" and "display:none"?
8.   What do you know about grid system?
9.   Which tag is used to align a picture so that one may be higher or lower than the other?
10. Tell me, how to integrate CSS file to your webpage?