1. Are the HTML tags and elements the same thing? No. HTML elements are defined by a starting tag, may contain some content and a closing tag.For example, <h1>Heading 1</h1> is a HTML element but just <h1> is a starting tag and </h1> is a closing tag.
2. What are tags and attributes in HTML? Tags are the primary component of the HTML that defines how the content will be structured/ formatted, whereas Attributes are used along with the HTML tags to define the characteristics of the element. For example, <p align=” center”>Interview questions</p>, in this the ‘align’ is the attribute using which we will align the paragraph to show in the center of the view.
3. What are void elements in HTML? HTML elements which do not have closing tags or do not need to be closed are Void elements. For Example <br />, <img />, <hr />, etc.
4. What is new about the relationship between the <header> and <h1> tags in HTML5? As HTML5 was all about better semantics and arrangements of the tags and elements, the <header> tag specifies the header section of the webpage. Unlike in previous version there was one <h1> element for the entire webpage, now this is the header for one section such as <article> or <section>. According to the HTML5 specification, each <header> element must at least have one <h1> tag.
5. What are HTML Entities? In HTML some characters are reserved like ‘<’, ‘>’, ‘/’, etc. To use these characters in our webpage we need to use the character entities called HTML Entities. Below are a few mapping between the reserved character and its respective entity character to be used.
Character
Entity Name
Entity Number
<
<
<
>
>
>
&
&
&
(non-breaking space) Eg. 10 PM
Eg. <p>10  PM</p>
 
6. What are the different types of lists in HTML?
7. What is the ‘class’ attribute in HTML? The class attribute is used to specify the class name for an HTML element. Multiple elements in HTML can have the same class value. Also, it is mainly used to associate the styles written in the stylesheet with the HTML elements.
8. What is the difference between the ‘id’ attribute and the ‘class’ attribute of HTML elements? Multiple elements in HTML can have the same class value, whereas a value of id attribute of one element cannot be associated with another HTML element.
9. Define multipart form data? Multipart form data is one of the values of the enctype attribute. It is used to send the file data to the server-side for processing. The other valid values of the enctype attribute are text/plain and application/x-www-form-urlencoded.
10. Describe HTML layout structure. Every web page has different components to display the intended content and a specific UI. But still, there are few things which are templated and are globally accepted way to structure the web page, such as:
<header>: Stores the starting information about the web page.
<footer>: Represents the last section of the page.
<nav>: The navigation menu of the HTML page.
<article>: It is a set of information.
<section>: It is used inside the article block to define the basic structure of a page.
<aside>: Sidebar content of the page.
11. How to optimize website assets loading? To optimize website load time we need to optimize its asset loading and for that:
CDN hosting - A CDN or content delivery network is geographically distributed servers to help reduce latency.
File compression - This is a method that helps to reduce the size of an asset to reduce the data transfer
File concatenation - This reduces the number of HTTP calls
Minify scripts - This reduces the overall file size of js and CSS files
Parallel downloads - Hosting assets in multiple subdomains can help to bypass the download limit of 6 assets per domain of all modern browsers. This can be configured but most general users never modify these settings.
Lazy Loading - Instead of loading all the assets at once, the non-critical assets can be loaded on a need basis.
12. What are the various formatting tags in HTML? HTML has various formatting tags:
<b> - makes text bold
<i> - makes text italic
<em> - makes text italic but with added semantics importance
<big> - increases the font size of the text by one unit
<small> - decreases the font size of the text by one unit
<sub> - makes the text a subscript
<sup> - makes the text a superscript
<del> - displays as strike out text
<strong> - marks the text as important
<mark> - highlights the text
<ins> - displays as added text
13. What are the different kinds of Doctypes available? The three kinds of Doctypes which are available:
Strict Doctype
Transitional Doctype
Frameset Doctype
14. Please explain how to indicate the character set being used by a document in HTML? The character set is defined in <meta> tag inside <head> element.<!DOCTYPE html><html><head><metacharset="UTF-8"> ... ...</head> ...</html> 15. What is the difference between <strong>, <b> tags and <em>, <i> tags? The effect on a normal webpage of the tags <strong>, <b> and <em>, <i> is the same. <b> and <i> tags stands for bold and italic. These two tags only apply font styling and bold tag <b>, just adds more ink to the text, these tags don't say anything about the text. Whereas, <strong> and <em> tags represent that the span of text is of strong importance or more importance and emphatic stress respectively than the rest of the text. These tags have semantic meaning.
16. What is the significance of <head> and <body> tag in HTML? <head> tag provides the information about the document. It should always be enclosed in the <html> tag. This tag contains the metadata about the webpage and the tags which are enclosed by head tag like <link>, <meta>, <style>, <script>, etc. are not displayed on the web page. Also, there can be only 1 <head> tag in the entire Html document and will always be before the <body> tag. <body> tag defines the body of the HTML document. It should always be enclosed in the <html> tag. All the contents which needs to be displayed on the web page like images, text, audio, video, contents, using elements like <p>, <img>, <audio>, <heading>, <video>, <div>, etc. will always be enclosed by the <body> tag. Also, there can be only 1 body element in an HTML document and will always be after the <head> tag.
17. Can we display a web page inside a web page or Is nesting of webpages possible? Yes, we can display a web page inside another HTML web page. HTML provides a tag <iframe> using which we can achieve this functionality.<iframesrc=”urlofthewebpagetoembed” /> 18. How is Cell Padding different from Cell Spacing? Cell Spacing is the space or gap between two consecutive cells. Whereas, Cell Padding is the space or gap between the text/ content of the cell and the edge/ border of the cell. Please refer to the above figure example to find the difference.
19. How can we club two or more rows or columns into a single row or column in an HTML table? HTML provides two table attributes “rowspan” and “colspan” to make a cell span to multiple rows and columns respectively.
20. Is it possible to change an inline element into a block level element? Yes, it is possible using the “display” property with its value as “block”, to change the inline element into a block-level element.
21. In how many ways can we position an HTML element? Or what are the permissible values of the position attribute? There are mainly 7 values of position attribute that can be used to position an HTML element:
static: Default value. Here the element is positioned according to the normal flow of the document.
absolute: Here the element is positioned relative to its parent element. The final position is determined by the values of left, right, top, bottom.
fixed: This is similar to absolute except here the elements are positioned relative to the <html> element.
relative: Here the element is positioned according to the normal flow of the document and positioned relative to its original/ normal position.
initial: This resets the property to its default value.
inherit: Here the element inherits or takes the property of its parent.
22. In how many ways you can display HTML elements?
inline: Using this we can display any block-level element as an inline element. The height and width attribute values of the element will not affect.
block: using this, we can display any inline element as a block-level element.
inline-block: This property is similar to inline, except by using the display as inline-block, we can actually format the element using height and width values.
flex: It displays the container and element as a flexible structure. It follows flexbox property.
inline-flex: It displays the flex container as an inline element while its content follows the flexbox properties.
grid: It displays the HTML elements as a grid container.
none: Using this property we can hide the HTML element.
Below are some of the display types which are rarely used:
table
inline-table
table-cell
table-column
table-row
inline-grid
list-item
inherit
initial
table-caption
23. What is the difference between “display: none” and “visibility: hidden”, when used as attributes to the HTML element. When we use the attribute “visibility: hidden” for an HTML element then that element will be hidden from the webpage but still take up space. Whereas, if we use the “display: none” attribute for an HTML element then the element will be hidden, and also it won’t take up any space on the webpage.
24. How to specify the link in HTML and explain the target attribute? HTML provides a hyperlink - <a> tag to specify the links in a webpage. The ‘href’ attribute is used to specify the link and the ‘target’ attribute is used to specify, where do we want to open the linked document. The ‘target’ attribute can have the following values:
_self: This is a default value. It opens the document in the same window or tab as it was clicked.
_blank: It opens the document in a new window or tab.
_parent: It opens the document in a parent frame.
_top: It opens the document in a full-body window.
25. In how many ways can we specify the CSS styles for the HTML element? There are three ways in which we can specify the styles for HTML elements:
Inline: Here we use the ‘style’ attribute inside the HTML element.
Internal: Here we use the <style> tag inside the <head> tag. To apply the style we bind the elements using ‘id’ or ‘class’ attributes.
External: Here we use the <link> tag inside <head> tag to reference the CSS file into our HTML code. Again the binding between elements and styles is done using ‘id’ or ‘class’ attributes.
26. Difference between link tag <link> and anchor tag <a>? The anchor tag <a> is used to create a hyperlink to another webpage or to a certain part of the webpage and these links are clickable, whereas, link tag <link> defines a link between a document and an external resource and these are not clickable.
27. How to include javascript code in HTML? HTML provides a <script> tag using which we can run the javascript code and make our HTML page more dynamic.<!DOCTYPE html><html><body><h1><span>This is a demo for </span><u><spanid="demo"></span></u></h1><script>document.getElementById("demo").innerHTML = "script Tag"</script></body></html> 28. When to use scripts in the head and when to use scripts in the body? If the scripts contain some event-triggered functions or jquery library then we should use them in the head section. If the script writes the content on the page or is not inside a function then it should be placed inside the body section at the bottom. In short, follow below three points:
Place library scripts or event scripts in the head section.
Place normal scripts that do not write anything on the page, in the head section until there is any performance issue.
Place scripts that render something on the web page at the bottom of the body section.
29. What are forms and how to create forms in HTML? The HTML form is used to collect the user inputs. HTML provides a <form> tag to create forms. To take input from the user we use the <input> tag inside the form so that all collected user data can be sent to the server for processing. There are different input types like ‘button’, ‘checkbox’, ‘number’, ‘text’, ‘password’, ‘submit’ etc.<formaction="/submit_data.php"><label>Enter your name: </label><inputtype="text"name="name" /><label>Enter Mobile number </label><inputtype="number"name="mobile_no"/><inputtype="submit"value="Submit"></form> 30. How to handle events in HTML? HTML allows event trigger actions in browsers using javascript or JQuery. There are a lot of events like ‘onclick’, ‘ondrag’, ‘onchange’, etc.<!DOCTYPE html><html><bodystyle="padding-top:50px"><h3id="event_demo">0</h3><inputtype="button"onclick="myFunction()"value="Click Me" /><inputtype="reset"onclick="reset()"value="Reset" /></body><script>functionmyFunction() {var value = document.getElementById("event_demo").innerHTML value = parseInt(value) + 1;document.getElementById("event_demo").innerHTML = value; }functionreset() {document.getElementById("event_demo").innerHTML = 0; }</script></html>
Windows 11 review For the past six years, Windows users have watched on the sidelines as the tech landscape changed at a breakneck pace. All the while, Windows 10 remained largely unchanged. When Microsoft's sporadic "feature updates" did arrive, they were often plagued with bugs, some so damaging the updates were suspended. And yet, despite its rocky path, Windows 10 will go down as a success, a stopgap to the mess its predecessors left behind. It brought back the traditional desktop interface, gave PC owners reliable performance, and popularized touchscreen displays and hybrid 2-in-1 laptops. But Windows 10 has struggled to stay fresh. Tired interfaces and ancient software plague the operating system used by more than a billion people. This is where Windows 11 comes in. I've been using some version of the OS for the last month or so and spent the past few days with the final product. Overall, Windows 11 is a step in the right direction. While it won't revolut
Top 10 New Windows 10 Features Windows 10 won't be launching for quite a while but we already know a lot about Microsoft's upcoming OS. From Xbox for Windows and Cortana for desktop to a resurrected Start Menu and new multitasking tools, the new platform will offer a bevy of new features. These are the 10 best. 1. Start Menu Returns It's what Windows 8 detractors have been clamoring for, and Microsoft has finally brought back the Start Menu. Now, when you click on the Start button at the bottom left of the screen, you get two panels side by side, with the left column showing pinned, recently and most-used apps. You also get a power button at the top for options such as Hibernate, Standby and Shutdown, and an all apps option a la Windows 8. The right column features a selection of live tiles that you can customize, resize and reorganize. Not only that, but the search field at the bottom will look up related Internet results in addition to programs and files (as it did on W
Acer Chromebook 317 review The Acer Chromebook 317 is the world’s first-ever 17.3-inch Chrome OS laptop. When I first heard this, I thought, “Why?” Is there a target audience of Chromebook lovers who’ve been beseeching the gods for an unwieldy, clunky laptop? Don’t most Chromebook owners want a mobile, easy-to-carry, travel-friendly device? However, after spending some time with this laptop, there is a method to Acer’s madness. There is an audience for the Chromebook 317, and it’s targeted at large-handed folks who are tired of feeling as if they’re typing with thick, meaty sausage links. This laptop is for consumers who live by the “go big or go home” maxim. However, in this case, you’ll have to do both: go big and go home. The Chromebook 317 isn’t particularly travel-friendly, so you’d be better off leaving the laptop stationed in your home office. No, the Chromebook 317 doesn’t have the brightest display, the most powerful processor, nor the longest battery life, but it’s adequate
Comments
Post a Comment