Heading Level #1
Heading Level #2
Heading Level #3
Heading Level #4
Heading Level #5
Heading Level #6
A paragraph (from the Greek paragraphos, “to write beside” or “written beside”) is a self-contained unit of a discourse in writing dealing with a particular point or idea.
A paragraph consists of one or more sentences. Though not required by the syntax of any language, paragraphs are usually an expected part of formal writing, used to organize longer prose.
A block quotation (also known as a long quotation or extract) is a quotation in a written document, that is set off from the main text as a paragraph, or block of text, and typically distinguished visually using indentation and a different typeface or smaller size quotation.
— Video, Matt Cutts.
This text1 has a first footnote.
This text2 has a second footnote.
This text is a hyperlink.
This text is given strong importance.
This text is given emphasis.
This text is deleted while this text is inserted.
This text is a superscript, such as ®.
This text is a subscript, such as H2O.
This small text is small
for for fine print, etc.
This is an Abbr, such as HTML.
This is a keyboard input, such as Cmd.
This text
is a short inline quotation.
This is a dfn element and indicates a definition.
This is a mark element and indicates a highlight.
This text
is an inline code.
This text is a sample output from a computer program.
This is a variable element, such as x = y.
- This is a list item in an unordered list
- An unordered list is a list in which the sequence of items is not important. Sometimes, an unordered list is a bulleted list. And this is a long list item in an unordered list that can wrap onto a new line.
- Lists can be nested inside of each other
- This is a nested list item
- This is another nested list item in an unordered list
- This is the last list item
- This is a list item in an ordered list
- An ordered list is a list in which the sequence of items is important. An ordered list does not necessarily contain sequence characters.
- Lists can be nested inside of each other
- This is a nested list item
- This is another nested list item in an ordered list
- This is the last list item
This is a code block:
@mixin face($status: sans) {
@if $status == "sans" {
font-family: "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif;
} @else if $status == "serif" {
font-family: "IBM Plex Serif", serif;
} @else if $status == "mono" {
font-family: "IBM Plex Mono", "Andale Mono", "Monaco", monospace;
}
}
and this is another code block:
const fruits = ['Banana', 'Orange', 'Apple', 'Mango'];
let fLen = fruits.length;
let text = '<ul>';
for (let i = 0; i < fLen; i++) {
text += '<li>' + fruits[i] + '</li>';
}
text += '</ul>';
document.getElementById('demo').innerHTML = text;
and this is yet another code block:
<?xml version="1.0" encoding="UTF-8"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
{%- assign pages = site.pages | where: 'language_reference', 'sitemap' %}
{%- for page in pages %}
<sitemap>
<loc>{{ site.absoluteurl }}{{ page.url | remove: 'index.html' }}</loc>
{%- if page.sitemap.lastmod %}
{%- assign lastmod = page.sitemap.lastmod | date: '%Y-%m-%d' %}
{%- elsif page.date %}
{%- assign lastmod = page.date | date_to_xmlschema %}
{%- else %}
{%- assign lastmod = site.time | date_to_xmlschema %}
{%- endif %}
<lastmod>{{ lastmod }}</lastmod>
</sitemap>
{%- endfor %}
</sitemapindex>
- Definition List
- A number of connected items or names written or printed consecutively, typically one below the other.
- This is a term.
- This is the definition of the above term, which both live in a dl.
- This is another term.
- And it gets a definition too, which is this line.
- This is term that shares a definition with the term below.
- And it gets a definition too, which is this line.