Category: 1. HTML Basics

  • HTML Tags for Text Formatting

    In HTML, a number of elements are used to format text. The formatting tags are divided into two groups: physical tags, that are used to style the text (visual appearance of the text) and logical or semantic tags that add semantic value to the text parts (e. g., inform search engines for which keywords a web page should…

  • HTML Headings

    The heading is a title at the head of a page or section of a book. It is very important to have different types of headings to structure the content of the web page. Headings help search engines to understand and index the structure of the web page. Heading Tags There are 6 levels of…

  • HTML Attributes

    HTML attributes are used within the opening tag. They provide additional information about HTML elements. An attribute edits the default functionality of an element or offers functionality to specific element types that cannot function properly without them. The attribute has a name, followed by the equals sign(=) and a value placed inside the quotation marks(“”). Syntax…

  • HTML Basic Tags

    Understanding basic HTML tags is important while learning HTML. Here are the HTML elements that are used more frequently than others. They are: the heading <h1>-<h6> tags, the <p> tag, the <img /> tag, the <a> tag, HTML documents All HTML documents must start with a declaration which specifies the document type: <!DOCTYPE html>. The HTML document begins with <html> and ends with </html>. The main…

  • HTML Elements

    Elements are the fundamentals of HyperText Markup Language (HTML). Each HTML document is made of elements that are specified using tags. HTML elements and HTML tags are often confused. The tags are used to open and close the object, whereas the element includes both tags and its content. Let’s consider an example with the <h1> tag: <h1>…

  • HTML Editors And Tools

    From the previous chapter, we learned that HTML is a markup language used for creating web pages. When working on creating web pages, you will need the following tools and programs: text or HTML editor for writing and editing source code, browser for checking results, validator – a special program checking the validity or syntactical…

  • HTML Introduction

    HTML (HyperText Markup Language) is a primary markup language for creating websites. It consists of a series of codes used to structure texts, images, and other content to be displayed in the browser. HTML Versions HTML was first developed by British physicist Tim Berners-Lee in 1990. Since that time, there have been many versions of HTML. Version…

  • HTML Introduction

    HTML (HyperText Markup Language) is a primary markup language for creating websites. It consists of a series of codes used to structure texts, images, and other content to be displayed in the browser. HTML Versions HTML was first developed by British physicist Tim Berners-Lee in 1990. Since that time, there have been many versions of HTML. Version…