More formatting elements Paragraphs Paragraphs appear more often than any other text block in web pages. HTML browsers don’t recognize hard returns that you enter when you create your page…
Other text elements Denoting a Generic Span of Content The span element has no meaning in its own right. We use it to apply one of the global attributes to a region…
Working with language elements The ruby, rt, and rp elements Ruby characters are notations placed above or to the right of characters in logographic languages (such as Chinese or Japanese), and that aid the…
Abbreviations, Definitions, Quotations and Citations Denoting Abbreviations The abbr element allows us to denote an abbreviation. When using this element, we use the title attribute to provide the expanded text that the…
Creating Breaks There are two elements that you can use to deal with line breaks in content: the br and wbr elements. Forcing a Line Break The br element introduces a line break. The style convention…
Basic text formatting elements The first set of text elements that you will look at have been around in HTML for a while. Some of these elements represented text formatting…
Creating a page from scratch using VS Code Visual Studio Code is a lightweight but powerful source code editor which runs on your desktop and is available for Windows, macOS…
Creating a page from scratch using Notepad Steps to create a webpage in HTML using Notepad HTML program or page can be created by many HTML or text editors. These…
Setting Up the Basic Document Structure The html element The html element, which is more properly called the root element, indicates the start of the HTML inside of your document. <!--Using the…
Parents, Children, Descendants and Siblings HTML elements have defined relationships with the other elements in an HTML document. An element that contains another element is the parent of the second…