Introduction to HTML tutorial This is a html tutorial for beginners to advance, where we have covered every single topic step by step with examples and practice exercises. After reading this chapter, you will get basic idea about html structure, Read More …
Category: HTML
Lesson 2 – HTML Editors
How to create your first page using html? We recommend using notepad for windows and Textedit for Mac to learn HTML as a beginner. Let’s learn how to create your first html page in notepad. Open a Notepad on your Read More …
Lesson 3 – html Basic Tags
In this chapter, we will learn all html basic tags that are the backbone of html language along with html interview questions and practice exercise. Heading Tag : Any document is incomplete without proper headings. In a html webpage, heading Read More …
Lesson 4 – HTML Elements
What are HTML elements? HTML elements are represented by a starting tag and a closing tag with content in between them. For example – What are nested HTML Elements: When one HTML element is put inside another HTML element, it Read More …
Lesson 5 – HTML Formatting
If you are familiar with MS word than you must have used text formatting options like Bold/Italics/underline to systematically arrange your content. Similarly, you can also arrange your content systematically in HTML using html formatting tags. Let’s find out how Read More …
Lesson 6 – HTML Text Styles
You can easily edit background color, text size, text color and text alignment of any document using HTML text style tags. HTML text style tags use the following syntax: <tag name e.g. p, b etc. style = “property:value;”> Background Read More …
Lesson 7 – HTML Phrase and Quotation Tags
HTML Phrase / Quotation tags are used to give special focus to a text. They are quite similar to text formatting tags. In this lesson, we will learn how to use Phrase and Quotation tags in html. Emphasized Text: Any Read More …
Lesson 8 – HTML Comments
What are HTML Comment Tags? HTML Comment tags are used to show comments within your source code. These tags are not displayed by a browsers on your computer screen. But however, it is a good practice to include these tags in Read More …
Lesson 9 – HTMl Meta Tags
What are HTML Meta Tags? HTML meta tags are important from SEO point of view because they define author, title, keywords and expiry date etc. of a document. They don’t interfere with the appearance of a web page, but however Read More …
Lesson 10 – Creating HTML Tables
How to create tables in HTML? HTML tables tags allows you to arrange information in a systematical manner, same like we do in MS Excel. In this chapter, we will learn how to create table, rows and columns using various Read More …