When managing the content in your store, from time to time you may need to add content that utilizes various tags to mark up your web pages in a certain way.
Listed below are some of the most common forms of mark up used on web pages today, and developer tools which can help to automatically generate copy and paste code to quickly use with your site.
Text Formatting
One of the more common questions raised in the publication of text content on a website is how to apply formatting with the use of tags such as <b> to make text bold or <i> to italicize text. A lot of confusion surrounds the number of available ways to format text and how to use their proper syntax.
Here you will find useful answers to these HTML text formatting1questions, and can try text formatting in this live HTML editor2.
Insert a Table
Tables are defined with the <table> tag. A table is divided into rows (with the <tr> tag), and each row is divided into data cells (with the <td> tag). If your one purpose is to insert a HTML table into your website, this table generator3 will is a simple and effective tool to generate HTML for a table with custom rows and columns.
Insert an image
In HTML, images are defined with the <img> tag. Here you will find a useful website tutorial on how to insert an image4 with the proper syntax into a HTML document.
Generate a HTML form
A form is an area that can contain form elements. Form elements are elements that allow the user to enter information (like text fields, textarea fields, drop-down menus, radio buttons, checkboxes, etc.) in a form. You can find a link to a very useful online form generator5 here, which will take you through a step-by-step procedure and then generate the code for you.
1) HTML text formatting
2) live HTML editor
3) table generator
4) insert an image
5) online form generator
|