HTML – Headings
Headings in HTML come in the form of <h1>, <h2>, <h3>, <h4>, <h5>, and <h6> tags. They are used to break up the text on your page into grouping for easier reading and better SEO.
Headings in HTML come in the form of <h1>, <h2>, <h3>, <h4>, <h5>, and <h6> tags. They are used to break up the text on your page into grouping for easier reading and better SEO.
The <p> tag is a way to structure your text into different paragraphs. Each paragraph of text should go in between an opening <p> and a closing <p> tag.
HTML text can be made bold, italicized, or underlined; these are just three of the many options available to indicate how text should look in the browser.
An HTML anchor link is a typical hyperlink except that it’s used to either jump to another section on the same page or specific section of another page.
An HTML hyperlink can be used to create a link to an email address. A default subject and body can be included.
In HTML/CSS there are specific entities that can be placed via code. This is a list of some of the most used HTML entities and their CSS equivalents.
The <blockquote> tag and <q> tag both define a section of text that is quoted from another source and may need to stand out on their own.
The HTML hyperlink uses an <a> tag to create a link to another document, image, video, or to a section of the current document.
A non-breaking space can be used between words so that the browser doesn’t split the words across two lines.
There are three different types of HTML lists: ordered lists, unordered lists, and definition lists.
The <a> tag (link) is used for creating a link to another document, image, video, or to a section of the current document.
The <abbr> tag defines an abbreviation/acronym, like “USA”, “FBI”, or “CIA”. It can be used with the title attribute to show the meaning on mouseover.
The <address> tag defines the contact information for the owner of a document/article and can be an email address, URL, physical address, phone number, etc.
The <bdi> tag (bi-directional isolation tag) is used to isolates text that may be formatted in a different direction from the other text surrounding it.
The <bdo> tag (bi-directional override tag) is used to change the direction of the text from the other text surrounding it.
The <blockquote> tag defines a section of text that is quoted from another source and may need to stand out on its own to some extent.
The <b> tag specifies bold text without any extra importance to what the text is saying. It is simply visual.
Use a <br> tag if you want to start a new line without starting a new paragraph. Unlike a new paragraph, no top or bottom margin will be added.
The <cite> tag defines the title of a creative work (e.g. a book, a poem, a song, a movie, a painting, a sculpture, etc.).
The <code> tag defines a piece of computer code placed on the page for the user to see. The browser usually displays it in a monospace font by default.