Sample Blog Post
Sample Hello World Html Tags Markdown
This blog post shows a few different types of content that \u2019s supported and styled with Bootstrap. Basic typography, lists, tables, images, code, and more are all supported as expected.
This blog post shows a few different types of content that’s supported and styled with Bootstrap. Basic typography, lists, tables, images, code, and more are all supported as expected.
Here is a list of elements that can be used in Markdown:
- Heading 1:
# Heading 1
- Heading 2:
## Heading 2
- Heading 3:
### Heading 3
- Bold text:
**bold text**
- Italic text:
*italic text*
- Blockquote:
> blockquote
- List item:
- list item
- Link:
[link text](url)
, where 'link text' is the visible text and 'url' is the actual web address. - Image:

, where 'alt text' is a description of the image and 'image URL' is the location of the image file on the internet.
This is some additional paragraph placeholder content. It has been written to fill the available space and show how a longer snippet of text affects the surrounding content. We'll repeat it often to keep the demonstration flowing, so be on the lookout for this exact same string of text.
Blockquotes
This is an example blockquote in action:
"Quoted text goes here."
— Irfan TOOR
This is some additional paragraph placeholder content. It has been written to fill the available space and show how a longer snippet of text affects the surrounding content. We'll repeat it often to keep the demonstration flowing, so be on the lookout for this exact same string of text.
Example lists
This is some additional paragraph placeholder content. It's a slightly shorter version of the other highly repetitive body text used throughout. This is an example unordered list:
- First list item
- Second list item with a longer description
- Third list item to close it out
And this is an ordered list:
- First list item
- Second list item with a longer description
- Third list item to close it out
And this is a definition list:
- HyperText Markup Language (HTML): The language used to describe and define the content of a Web page
- Cascading Style Sheets (CSS): Used to describe the appearance of Web content
- JavaScript (JS): The programming language used to build advanced Web sites and applications
Inline Markdown elements
HTML defines a long list of available inline tags, a complete list of which can be found on the Mozilla Developer Network
Here is how can you play with the markdown:
- To bold text, use
**
. - To italicize text, use
*
. - Abbreviations, like HTML should use
[]
, with an optionaltitle
attribute for the full phrase. - Citations, like — Mark Otto, should use
*—
or<cite>
. - ~~Deleted~~ text should use
~~
and inserted text should use<ins>
. - Superscript text uses
<sup>
and subscript text uses<sub>
. - To display code inline use .
Most of these elements are styled by browsers with few modifications on our part.
Heading
This is some additional paragraph placeholder content. It has been written to fill the available space and show how a longer snippet of text affects the surrounding content. We'll repeat it often to keep the demonstration flowing, so be on the lookout for this exact same string of text.
Sub-heading
This is some additional paragraph placeholder content. It has been written to fill the available space and show how a longer snippet of text affects the surrounding content. We'll repeat it often to keep the demonstration flowing, so be on the lookout for this exact same string of text.
<?php
echo "hello world";
This is some additional paragraph placeholder content. It's a slightly shorter version of the other highly repetitive body text used throughout.