biswojitbalhashnode.comWhat are Inline and block elements in HTML? Difference between them? Name a few inline and block elements.Block level Elements -> Block-level elements take up as much space as possible by default. -> Each block-level element will start a new line on the page, stacking down the page. -> In addition to stacking vertically, block-level elements will also t...Jun 29, 2023·2 min read
biswojitbalhashnode.comWhat are the advantages of using Emmet?Saves a lot of time. Increase productivity Efficient programming Allows to type shortcuts that are then expanded into full pieces of code after auto suggestive letter pops up.Jun 29, 2023·1 min read
biswojitbalhashnode.comWhat is Emmet?Emmet(formerly Zen coding) is a set of plug-ins for text editors that allow for high-speed coding and editing in HTML, XML, XSLT and other structured code formats via content assist. It uses a specific syntax in order to expand small snippets of cod...Jun 28, 2023·1 min read
biswojitbalhashnode.comWhat are HTML Entities?HTML Entities Some reserved characters are reserved in HTML. If you use the less than(<) or greater than(>) signs in your text, the browser might mix them with tags. Character entities are used to display reserved characters in HTML. Ex: &entity...Jun 28, 2023·1 min read
biswojitbalhashnode.comWhat are tags, Element and attributes in HTML?HTML Tags HTML Tags are used to mark up the start of an HTML element and they are usually enclosed in angle brackets. Ex: <h1> </h1> --> Heading tag <h1> --> Opening tag </h1> --> Closing tag HTML tags are almost like keywords where every singl...Jun 27, 2023·1 min read