WordPress is one of the most popular tool today to publish Websites and Blogs are many reasons for this. It has many qualities that make it suitable for development for users at most all levels. Let’s discuss how efficiently publish HTML embedded Interactive Blog in WordPress
HTML tags or HTML elements, and their respective attributes are used to create HTML documents so that we can view them in browsers like Google Chrome, Internet Explorer, Firefox, etc., and other user agents.
Let us discuss how we have to create HTML Embedded Interactive Blog using WordPress Post Creation Wizard in the Admin Panel.
- Log in to your WordPress Administration Panel (Dashboard).
- Click the ‘Posts’ tab.
- Click the ‘Add New’ sub-tab.
- Select the ‘Text’ Editor.
The Text Editor is a powerful tool to write up code in HTML along with CSS or by plain Text.
Pragraph :
Text Alignment: Left
1 2 3 4 5 6 7 8 9 |
<p style="text-align: left"> Structured Query Language (SQL) is one of the most popular languages today to querying database and there are many reasons for this. It has many qualities that make it suitable for development for users at most all levels. Let’s discuss how efficiently remove duplicate records in a SQL Server Database table. SQL Server is a Relational Database Management System (RDBMS) and the most widely used client–server model RDBMS in the current trend applications. RDBMS is perhaps the most important Database system used in the workplace today. </p> |
Text Alignment: Right
1 2 3 4 5 6 7 8 9 |
<p style="text-align: right"> Structured Query Language (SQL) is one of the most popular languages today to querying database and there are many reasons for this. It has many qualities that make it suitable for development for users at most all levels. Let’s discuss how efficiently remove duplicate records in a SQL Server Database table. SQL Server is a Relational Database Management System (RDBMS) and the most widely used client–server model RDBMS in the current trend applications. RDBMS is perhaps the most important Database system used in the workplace today. </p> |
Text Alignment: Justify
1 2 3 4 5 6 7 8 9 |
<p style="text-align: justify"> Structured Query Language (SQL) is one of the most popular languages today to querying database and there are many reasons for this. It has many qualities that make it suitable for development for users at most all levels. Let’s discuss how efficiently remove duplicate records in a SQL Server Database table. SQL Server is a Relational Database Management System (RDBMS) and the most widely used client–server model RDBMS in the current trend applications. RDBMS is perhaps the most important Database system used in the workplace today. </p> |
Block Quote
1 2 3 4 |
<blockquote>Structured Query Language (SQL) is one of the most popular languages today to querying database and there are many reasons for this. It has many qualities that make it suitable for development for users at most all levels. </blockquote> |
Text Alignment: Justify
1 2 3 4 5 6 7 |
<blockquote"> <p style="text-align: justify"> Structured Query Language (SQL) is one of the most popular languages today to querying database and there are many reasons for this. It has many qualities that make it suitable for development for users at most all levels. </p> </blockquote> |
Text: Bold
1 2 3 4 5 |
<p style="text-align: justify"> <strong>Structured Query Language</strong> (SQL) is one of the most popular languages today to querying database and there are many reasons for this. It has many qualities that make it suitable for development for users at most all levels. </p> |
Text: Emphasized
1 2 3 4 5 |
<p style="text-align: justify"> <em>Structured Query Language</em> (SQL) is one of the most popular languages today to querying database and there are many reasons for this. It has many qualities that make it suitable for development for users at most all levels. </p> |
Text: Italic
1 2 3 4 5 |
<p style="text-align: justify"> <i>Structured Query Language</i> (SQL) is one of the most popular languages today to querying database and there are many reasons for this. It has many qualities that make it suitable for development for users at most all levels. </p> |
Text: Underline
1 2 3 4 5 |
<p style="text-align: justify"> <span style="text-decoration: underline;">Structured Query Language</span> (SQL) is one of the most popular languages today to querying database and there are many reasons for this. It has many qualities that make it suitable for development for users at most all levels. </p> |
Text: Overline
1 2 3 4 5 |
<p style="text-align: justify"> <span style="text-decoration: overline;">Structured Query Language</span> (SQL) is one of the most popular languages today to querying database and there are many reasons for this. It has many qualities that make it suitable for development for users at most all levels. </p> |
Text: delete (or) line-through
Using HTML
1 2 3 4 5 |
<p style="text-align: justify"> <del>Structured Query Language</del> (SQL) is one of the most popular languages today to querying database and there are many reasons for this. It has many qualities that make it suitable for development for users at most all levels. </p> |
Using CSS
1 2 3 4 5 |
<p style="text-align: justify"> <span style="text-decoration: line-through">Structured Query Language</span> (SQL) is one of the most popular languages today to querying database and there are many reasons for this. It has many qualities that make it suitable for development for users at most all levels. </p> |
Text: Insert
1 2 3 |
<p style="text-align: justify"> SQL Update Command is a <del>Data Query Language</del> <ins>Data Manipulation Language</ins>. </p> |
Text: Color
Foreground Color
1 2 3 4 5 |
<p style="text-align: justify"> <span style="color: red;">Structured Query Language</span> (SQL) is one of the most popular languages today to querying database and there are many reasons for this. It has many qualities that make it suitable for development for users at most all levels. </p> |
Background Color
1 2 3 4 5 |
<p style="text-align: justify"> <span style="background-color: yellow;">Structured Query Language</span> (SQL) is one of the most popular languages today to querying database and there are many reasons for this. It has many qualities that make it suitable for development for users at most all levels. </p> |
Text: Hyper Link
1 2 3 4 5 |
<p style="text-align: justify"> <a href="https://en.wikipedia.org/wiki/SQL" title="Wikipedia: SQL">Structured Query Language</a> (SQL) is one of the most popular languages today to querying database and there are many reasons for this. It has many qualities that make it suitable for development for users at most all levels. </p> |
List
Ordered List
1 2 3 4 5 6 7 |
<ol> <li>Data Definition Language</li> <li>Data Manipulation Language</li> <li>Data Query Language</li> <li>Data Control Language</li> <li>Transaction Control Language</li> </ol> |
UN-Ordered List
1 2 3 4 5 6 7 |
<ul> <li>Data Definition Language</li> <li>Data Manipulation Language</li> <li>Data Query Language</li> <li>Data Control Language</li> <li>Transaction Control Language</li> </ul> |
Data List
1 2 3 4 5 6 7 8 |
<dl> <dt>Types of Language</dt> <dd>Data Definition Language</dd> <dd>Data Manipulation Language</dd> <dd>Data Query Language</dd> <dd>Data Control Language</dd> <dd>Transaction Control Language</dd> </dl> |
Table
Default Table
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
<table> <thead> <tr> <td>S.No.</td> <td>Database</td> <td>Launched</td> <td>License</td> <td>SQL</td> </tr> </thead> <tbody> <tr> <td>1</td> <td>Oracle</td> <td>1980</td> <td>Proprietary</td> <td>Yes</td> </tr> <tr> <td>2</td> <td>MySQL</td> <td>1995</td> <td>Open source</td> <td>Yes</td> </tr> <tr> <td>3</td> <td>Microsoft SQL Server</td> <td>1989</td> <td>Proprietary</td> <td>Yes</td> </tr> <tr> <td>4</td> <td>PostgreSQL</td> <td>1989</td> <td>Open source</td> <td>Yes</td> </tr> <tr> <td>5</td> <td>MongoDB</td> <td>2009</td> <td>Open source</td> <td>Yes</td> </tr> </tbody> </table> |
Formatted Table: Border, Padding, Background Color and Text Alignment
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
<table cellspacing="0" cellpadding="5" style="border: 1px solid #f6f6f6;border-collapse: collapse"> <caption> List of Databases <caption> <thead> <tr> <td style="background-color: #f6f6f6;border: 1px solid #f6f6f6;text-align: center;padding: 10px">S.No.</td> <td style="background-color: #f6f6f6;border: 1px solid #f6f6f6;text-align: center;padding: 10px">Database</td> <td style="background-color: #f6f6f6;border: 1px solid #f6f6f6;text-align: center;padding: 10px">Launched</td> <td style="background-color: #f6f6f6;border: 1px solid #f6f6f6;text-align: center;padding: 10px">License</td> <td style="background-color: #f6f6f6;border: 1px solid #f6f6f6;text-align: center;padding: 10px">SQL</td> </tr> </thead> <tbody> <tr> <td style="border: 1px solid #f6f6f6;padding: 10px;text-align: right">1</td> <td style="border: 1px solid #f6f6f6;padding: 10px">Oracle</td> <td>1980</td> <td style="border: 1px solid #f6f6f6;padding: 10px">Proprietary</td> <td style="border: 1px solid #f6f6f6;padding: 10px">Yes</td> </tr> <tr> <td style="border: 1px solid #f6f6f6;padding: 10px;text-align: right">2</td> <td style="border: 1px solid #f6f6f6;padding: 10px">MySQL</td> <td style="border: 1px solid #f6f6f6;padding: 10px;text-align: right">1995</td> <td style="border: 1px solid #f6f6f6;padding: 10px">Open source</td> <td style="border: 1px solid #f6f6f6;padding: 10px">Yes</td> </tr> <tr> <td style="border: 1px solid #f6f6f6;padding: 10px;text-align: right">3</td> <td style="border: 1px solid #f6f6f6;padding: 10px">Microsoft SQL Server</td> <td style="border: 1px solid #f6f6f6;padding: 10px;text-align: right">1989</td> <td style="border: 1px solid #f6f6f6;padding: 10px">Proprietary</td> <td style="border: 1px solid #f6f6f6;padding: 10px">Yes</td> </tr> <tr> <td style="border: 1px solid #f6f6f6;padding: 10px;text-align: right">4</td> <td style="border: 1px solid #f6f6f6;padding: 10px">PostgreSQL</td> <td style="border: 1px solid #f6f6f6;padding: 10px;text-align: right">1989</td> <td style="border: 1px solid #f6f6f6;padding: 10px">Open source</td> <td style="border: 1px solid #f6f6f6;padding: 10px">Yes</td> </tr> <tr> <td style="border: 1px solid #f6f6f6;padding: 10px;text-align: right">5</td> <td style="border: 1px solid #f6f6f6;padding: 10px">MongoDB</td> <td style="border: 1px solid #f6f6f6;padding: 10px;text-align: right">2009</td> <td style="border: 1px solid #f6f6f6;padding: 10px">Open source</td> <td style="border: 1px solid #f6f6f6;padding: 10px">No</td> </tr> </tbody> </table> |
Image
1 2 3 |
<img src="http://www.increvcorp.com/wp-content/uploads/2016/03/logo.png" alt="IncRev Corporation" title="IncRev Blog" /> |
Conclusion:
This article targets at understanding how efficiently we create a Interactive HTML Embedded Blog in WordPress. This article is intended for the beginner/intermediate level. I hope, this post will solve all your basic functionality of WordPress Blog Content Formatting. Think Big… Start Small… Do Fast…