|
| www.kdwebpagedesign.com |
|
BASIC HTML ::
Welcome
Introduction to HTML What is an URL? Browser Safe Fonts Photo Size and Compression Formatting Your Text Paragraphs, Linebreaks, Rules The Marquee Tag Adding Images Adding Text and Image Links Making Lists Tables: Basics Tables: Backgrounds and Color Tables: Colspan and Rowspan Tables: Practical Samples BASIC CSS ::
Introduction to CSS
Adding Backgrounds and Color The <div> and <span> Tags Formatting Your Text/CSS Making Lists/CSS Image Borders/CSS Hyperlinks/CSS Tables/CSS Fun with CSS USER Tools ::
Custom Auction Listing Creator: 1
Custom Auction Listing Creator: 2 Choosing Your Colors Mix-and-Match Backgrounds JavaScript Tricks ::
Other Information ::
eBay Related Questions
Customizing Your eBay Store Hosting Your Own Photos on eBay Using Irfanview to Crop Photos What Does That Term Mean? Donations ::
Do you find our Tutorials helpful? Are the free Auction Templates helping your sales? Donations of any amount are appreciated to help keep this site up and running!
|
![]() |
Formatting Your TextThe most important tags in HTML are tags that define text and paragraphs. Two of these tags include the <font> and the <h>. When you input HTML code, you can never be sure how the text is displayed in another browser, a lot depends on screen resolutions and browser default settings. Never try to format the text in your editor by adding empty lines and spaces to the text, it may line up nicely in your editor, but will appear differently as a Web page. When writing your HTML you may use extra lines between your code to keep sections separated. It will not affect the HTML.
The <font> Tag and its AttributesTo specify font size, you use the attribute size="x". Font sizes are not a fixed size and the values allowed are 1 through 7, +1 through +7 and -1 through -7. They may vary on the viewers browser settings and screen resolutions. The + and - values are relative to the defaults set by the browser, whereas the unsigned values are absolute sizes, with 3 being the default. If a browser sets 3 as the default, you can only impose a relative effect down to -2. When the relative math exceeds the absolute values, there will be no additional scaling. Click here for example of default font sizes viewed at normal, largest (increase +2) and smallest (decrease -2) in Firefox. To specify the font face, you use the attribute face="x". Be careful when choosing your font style. The font must be on the viewers computer to be displayed properly. In other words, if you find a cool font and download it to your computer and use it for your headings, unless the viewer happens to have downloaded the same font, the headline will be displayed using the browsers default font. It could really change the appearance of your page. To learn more about browser friendly fonts, please see Browser Safe Fonts To specify the font color, you use the attribute color="#x" with the value being a hex number. For more information on choosing colors, please see Choosing Your Colors. You can also use certain tags to make your text bold, italic, or underlined. These tags are placed directly before and after the text that you want to modify. <b>Bold</b> Here is how the font tag looks coded with the size, color and face attributes, as well as making the text bold/italic: <font size="3" color="#7b7e00" face="arial, helvetica, sans-serif"> The <pre> tag is good for displaying text that you want to align a certain way. It preserves both spaces and line breaks, and uses monospace fonts for display. /\_/\ This cat picture ( o.o ) is made of text > ^ < only!
Use of the Heading <h> TagHeadings are defined with the <h1> to <h6> tags. <h1> is the largest heading and <h6> is the smallest heading. Use heading tags only for headings. The <h1> will by default make your text bold but do not use them just to make something bold. HTML automatically adds an extra blank line before and after a heading. <h1>Headline Goes Here</h1> |