Conquer HTML Ep[9]: Course Finale
Wrap Up: Congrats on getting this far in the Conquer HTML series! So far you have learnt a lot about HTML basics. To sum it up, you have learnt: What…
Wrap Up: Congrats on getting this far in the Conquer HTML series! So far you have learnt a lot about HTML basics. To sum it up, you have learnt: What…
What are div tags? In previous episodes, we have learnt that we use tags like h, p, img, etc to signify the purpose of that piece of code. For example,…
Lists: Lists are a bunch of similar elements grouped together. There are two types of lists in HTML, ordered lists and unordered lists. Ordered lists are sequential lists which have…
Links: While browsing the web, you might have come across blue underlined texts that take you to a target page when clicked. These are called as links and they are…
What are comments? Suppose you code a website today and go on a long vacation. There are chances that when you return to developing your website, you would have forgotten…
Welcome to Episode 5 of Terminal Stack’s series, this is the last episode of our series 5 Biggest Hacks Ever! In this post of Terminal Stack, we will take a…
What are attributes? HTML attributes are some extra information provided inside the starting tags, they provide some additional features to the HTML tags. Examples: <img> tag is used to insert…
How to do text formatting in HTML? HTML allows you to format texts in several different ways, through which you can highlight, emphasize or style a piece of text. One…
In this episode of Conquer HTML series, we will be making a very basic HTML website and opening it in the browser. How to open a HTML file in the…
Starter Template Every HTML file has some basic setup which is called as a starter template, that wraps the entire HTML code. The following code is what a basic starter…