Typography (h1)
Typography (h2)
Typography (h3)
Typography (h4)
Typography (h5)
Typography (h6)
With SelfTitled built-in classes you can easily create stunning styles for your HTML items without having to dig into coding. All you need to do is to select the part of your text that you want to add classes, and from the drop down list of styles add your desired one and enjoy. Some of the styles are illustrated below.
Basic HTML Elements
Here is a short demonstration of text-level semanticts. The <p> element creates a new paragraph. It will have some space before and after itself. To turn your text into hypertext just use the <a> element.
Text-Level Semantics
You can emphasize text using the <em> element or to imply any extra importance the <strong> element. Highlight text with no semantic meaning using the <mark> element. Markup document changes like inserted or deleted text with the <del> element or <ins> element. To define an abbreviation use the <abbr> element and to define a definition term use the <dfn> element.
Short List (default styles)
- Completely engage user friendly e-services with technicall
- Rapidiously re-engineer multidisciplinary mindshare
- Enthusiastically whiteboard cooperative architectures
A Zebra List
- List Item-1
- List Item-2
- List Item-3
- List Item-4
- List Item-5
A Line List
- List Item-1
- List Item-2
- List Item-3
- List Item-4
- List Item-5
A Check List
- List Item-1
- List Item-2
- List Item-3
- List Item-4
- List Item-5
Quotations and Code
Inline quotations can be defined by using the <q> element
.
The <blockquote> element defines a long quotation which also creates a new block by inserting white space before and after the blockquote element.
To define a short inline computer code use the <code> element. For a larger code snippet use the <pre> element which defines preformatted text. It creates a new text block which preserves both spaces and line breaks.
pre {
margin: 15px 0;
padding: 10px;
font-family: "Courier New", Courier, monospace;
font-size: 12px;
line-height: 18px;
white-space: pre-wrap;
}
Use the <small> element for side comments and small print.
Useful CSS Classes
Here is a short demonstration of all style related CSS classes provided by the SelfTitled theme.
Highlight Content
Drop caps are the first letter of a paragraph which are displayed bigger than the rest of the text. You can create a drop cap using the CSS class dropcap. To emphasize text with some small boxes use <em> element with the CSS class box.
box-content.box-note.box-info.box-warning.box-hint.box-download.Use the CSS class dotted to create a dotted horizontal rule.
Tables
Create a zebra stripped table using using the CSS class zebra.
| Table Heading | Table Heading | Table Heading |
|---|---|---|
| Table Footer | Table Footer | Table Footer |
| Table Data | Table Data | Data Centered |
| Data Bold | Table Data | Data Centered |
| Table Data | Table Data | Data Centered |
Definition Lists
Create a nice looking definition list separated with a line by using the CSS class separator.
- Definition List
- A definition list is a list of terms and corresponding definitions. To create a definition list use the <dl> element in conjunction with <dt> to define the definition term and <dd> to define the definition description.
- Definition Term
- This is a definition description.
- Definition Term
- This is a definition description.
- This is another definition description.
