➊ Basics
➋ Tags and Elements
➌ HTML Structure
➍ Headings, New Line, Blank Space
➎ Tables
➏ Lists
🚥 Disclaimer
⬖ The questions covered here are mostly conceptual
⬘ I never claim only these type of questions are/should be asked during interviews
⬗ For interviews, you should have fundamentals strong. And you should be able to provide solutions to practical problems.
➊ Basics
➀ What is HTML?
➁ What type of language is HTML?
➂ What is HTML5?
➃ What are the features added/modified in HTML5?
➄ What is Semantic HTML? What advantage does it have?
➋ Tags and Elements
➀ What is a tag?
➁ What is an element?
➂ What is the difference between an element and a tag?
➃ What is a void element?
➄ Give some examples of void elements.
➅ What does "semantic tag" mean?
➆ Give some examples of semantic tags.
➌ HTML Structure
➀ What does <!DOCTYPE html> mean?
➁ Is HTML hierarchically structured?
➂ What kind of contents are kept inside "head" element?
➃ How to set "title" for a page?
➄ What is a "meta" tag? Why is it used?
➅ Give few examples of meta data.
➆ What does <meta charset="utf-8"> do?
➇ Using meta tag, show how to automatically refresh a page after given time.
➈ What is "viewport" meta data? How to set it?
➉ How does "viewport" help in designing a responsive web page?
➀➀ What is a "link" tag? Why is it used?
➀➁ How to set "favicon" for a page?
➀➂ Give examples of few link types.
➍ Headings, New Line, Blank Space
➀ How many heading elements HTML provide?
➁ Are heading elements void elements?
➂ How to insert a line break in HTML?
➃ Can multiple contiguous blank spaces rendered as it is?
➄ How to display blank spaces correctly in HTML?
➎ Tables
➀ Define all table related tags.
➁ What tag is used for a row?
➂ What tag is used for a cell?
➃ Why to use "thead"?
➄ Why to use "tbody"?
➅ What is the difference between "th" and "td"?
➆ How to give caption to a table?
➇ What is a column group?
➈ How to combine multiple cells into one cell?
➉ How to add footer contents in a table?
➏ Lists
➀ What are different types of lists available in HTML?
➁ Which tag is used for unordered list?
➂ Define an unordered list?
➃ Which tag is used for ordered list?
➄ Define an ordered list?
➅ How to set a different numbering type for an ordered list?
➆ How to set the initial numbering for an ordered list?
➇ Which tag is used to define a list item?
➈ What is a description list?
➉ Which tag is used for a description list?
➀➀ Which tags are used for each item in a description list?
⚠️ Repost Notice ⚠️
⬖ Though this is my original work, it was previously posted in [CHIRPBIRDICON]
⬘ Many questions have been taken from the original 🧵
⬙ If you liked these questions and do feel others might learn from it, please support.
End of 🧵
Are you looking for Interview Questions? I am sharing interview questions on DSA, SQL, HTML/CSS, JavaScript and React.
If you are interested, Follow me ✅
• • •
Missing some Tweet in this thread? You can try to
force a refresh
Using your favourite language
❍ C
❍ C++
❍ Python
❍ Java
❍ C#
❍ PHP
❍ JavaScript
Or, anything.
⇩
When we start practicing to improve our programming skills, the very first problems are always based on numbers.
Here I am presenting problems on
➊ Simple Numbers
➋ Unit Conversion
➌ Calculation
➍ Geometry
➎ Vector
➏ Matrix
➐ Set
➑ Special Numbers
➊ Simple Numbers
➀ Find a digit at a specific place in a number
➁ Find count of digits in a number
➂ Find the largest digit
➃ Find the 2nd largest digit
➄ Find the kth largest digit
➅ Find the smallest digit