Category: Fresher Interview Que.
Bootstrap Interview Questions PDF Download
Bootstrap Interview Question in PDF In this article most frequently asked questions about the Bootstrap interview and we have included a list of the most popular questions and answers for the Boot
What is Bootstrap 4? Explain It?
Bootstrap 4 is the latest version of Bootstrap, which is the most popular HTML, CSS and JavaScript framework for developing responsive and mobile websites first. Bootstrap 4 is completely free to dow
what is Bootstrap? Why use Bootstrap?
Bootstrap is an HTML, CSS and JS framework for creating rich web applications with minimal effort. This framework emphasizes more in the construction of mobile web applications. In other word Boot
Difference between HTML and HTML5?
If we want to represent the same thing in HTML 4 with proper names of the HTML section, we would probably use a DIV tag. But in HTML 5 they have made it clearer by creating element names for those
What is the difference between “div” and “span” elements?
In this article today we are talking difference between "Div" and "Span" <div> Div is block element are take the full available width of block level. Div tags are used to define section i
How to create emails links?
To HTML create email links using Example: <a href="mailto:youremail@domain.com">Send Email</a> how to create html email link https://youtu.be/c2FJCc012mY How to Create EMAIL Link
How to redirect using HTML?
Using HTML, we can redirect users to dierent webpage. <meta http-equiv="refresh" content="0; url=http://www.google.com" />
What is a class? What is an ID?
Class- A class is a style (like a group of CSS attributes) that can be applied to one or more HTML elements. It is applied to an HTML element via the class attribute and the class name. .example-
What is CSS?
A CSS (cascading style sheet) file allows you to separate your web sites HTML content from it's style. As always you use your HTML file to arrange the content, but all of the presentation (fonts, col
What are List? How to create Lists?
HTML list <ul> and <o> tag are used to create lists. Example <ol> <li>Screening Round</li> <li> Technical Round</li> <li> HR Round</li> </ol> Output is