Using HTML BasicsHTML is used to display web pages and other information that can be read from a web browser. You may decide to use HTML in your ads to enhance their display on marketplaces. The information that follows is very basic but will allow you to get started. You can find a wealth of information about HTML on the web..
What is HTML?HTML is a language for describing web pages.
HTML TagsHTML markup tags are usually called HTML tags
HTML Paragraphs and FormattingParagraphs are defined with the </p> tag.
Use the <br> tag if you want a line break (a new line) without starting a new paragraph. Text Formatting TagsTags are used to format text. Here is a list of tags and their descriptions.
HTML StylesThe purpose of the style attribute is to provide a common way to style all HTML elements. style="background-color:yellow" HTML Style ExamplesBackground Color: <body style="background-color:yellow">
Font Family, Color and Size: <p style="font-family:courier new; color:red; font-size:20px">
Text Alignment: <h1 style="text-align:center">
HTML LinksA link is the address to a document or resource on the web. A hyperlink can point to any resource on the web: an HTML page, an image, a sound file, etc.
How it looks in a browser: HTML ImagesIn HTML, images are defined with the <img> tag. The <img> tag is empty, which means that it contains attributes only and it has no closing tag. To display an image on a page, you need to use the src attribute. Src stands for "source". The value of the src attribute is the URL of the image you want todisplay on your page. The syntax of defining an image:
The URL points to the location where the image is stored. An image named "ca_logo.gif" located in the directory "images" on "www.ChannelAdvisor.com" has the URL: http://www.ChannelAdvisor.com/images/ca_logo.jpg. The browser puts the image where the image tag occurs in the document. If you put an image tag between two paragraphs, the browser shows the first paragraph, then the image, and then the second paragraph. HTML TablesTables 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). The letters td stands for "table data," which is the content of a data cell. A data cell can contain text, images, lists, paragraphs, forms, horizontal rules, tables, etc.
How it looks in a browser:
HTML Lists and BulletsHTML is used to display web pages and other information that can be read from a web browser. You may decide to use HTML in your ads to enhance their display on marketplaces. The information that follows is very basic but will allow you to get started. You can find a wealth of information about HTML on the web..
What is HTML?HTML is a language for describing web pages.
HTML TagsHTML markup tags are usually called HTML tags
HTML Paragraphs and FormattingParagraphs are defined with the </p> tag.
Use the <br> tag if you want a line break (a new line) without starting a new paragraph. Text Formatting TagsTags are used to format text. Here is a list of tags and their descriptions.
HTML StylesThe purpose of the style attribute is to provide a common way to style all HTML elements. style="background-color:yellow" HTML Style ExamplesBackground Color: <body style="background-color:yellow">
Font Family, Color and Size: <p style="font-family:courier new; color:red; font-size:20px">
Text Alignment: <h1 style="text-align:center">
HTML LinksA link is the address to a document or resource on the web. A hyperlink can point to any resource on the web: an HTML page, an image, a sound file, etc.
How it looks in a browser: HTML ImagesIn HTML, images are defined with the <img> tag. The <img> tag is empty, which means that it contains attributes only and it has no closing tag. To display an image on a page, you need to use the src attribute. Src stands for "source". The value of the src attribute is the URL of the image you want todisplay on your page. The syntax of defining an image:
The URL points to the location where the image is stored. An image named "ca_logo.gif" located in the directory "images" on "www.ChannelAdvisor.com" has the URL: http://www.ChannelAdvisor.com/images/ca_logo.jpg. The browser puts the image where the image tag occurs in the document. If you put an image tag between two paragraphs, the browser shows the first paragraph, then the image, and then the second paragraph. HTML TablesTables 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). The letters td stands for "table data," which is the content of a data cell. A data cell can contain text, images, lists, paragraphs, forms, horizontal rules, tables, etc.
How it looks in a browser:
HTML Lists and Bullets (2 votes) Related Topics: (2 votes)
Page last updated: Tue, 09/25/2012 - 11:04
|