Webmaster Key - Discussion Forums


Welcome, Guest. Please login or register.
Did you miss your activation email?
February 05, 2012, 04:58:43 AM

Login with username, password and session length
Welceome to Forums!

Important information for guests and new members:

In order to understand the full benefits of becoming an active member of this forum, please review the following information on guest and new member restrictions. These forum changes have been prompted by an overwhelming and unreasonable amount of bot postings and incoherent guest spam messages. We wish to prevent these events from happening in the future and make our community a more comfortable place for all of our members.

For guests:

Guests are not allowed to open new topics, polls, or posts attachments.
If you wish to open up new discussions on this forum, we encourage you to register.

For new members:

New members with less than five posts are not allowed to modify additional profile information such as avatars, contact information, biographies, and signatures. However, new members are encouraged to post their own topics or reply to topics initiated by other members. Become active on the forums and 5 posts should be an easy task!

We are a diverse community with members from all over the world. We encourage new ideas and interesting conversation. Do not be afraid to post webmaster/computer-related questions or problems, as our active members are always willing to help when they are able. Interested? Join us.

+ Webmaster Key Forums
|-+ Webmaster Corner
| |-+ Site Design and Web Authoring
| | |-+ list formating and strong vs. bold
0 Members and 1 Guest are viewing this topic. « previous next »
Pages: [1] Go Down Stumble Upon! Digg It! del.icio.us! Add to Technorati! ReddIt!  Send this topic Print
Author Topic: list formating and strong vs. bold  (Read 3499 times)
ched
Key Keeper
Full Member
***
Posts: 200


WWW
« on: July 24, 2003, 02:37:01 AM »

Two questions:
What's the easiest way for format the line spacing in an unorderd list?
example:
<ul>
  <li>hello</li>
  <li>line 2</li>
</ul>

and let's say I want a line spacing of 1 and 1/2 or even 2

Second:
What's everyones opinion on the <strong> vs. <b> method of making text bold.  Is one better than the other?  why?
Report to moderator   Logged

Queen Bee
Mother of All
Administrator
Veteran
*****
Posts: 2 624


Buzz, buzz!


WWW
« Reply #1 on: July 24, 2003, 06:10:02 AM »

Quote
What's everyones opinion on the <strong> vs. <b> method of making text bold.  Is one better than the other?  why?
Besides the fact that one of them is easier to type than the other?
While bold is just for appearance, strong takes on something that needs strong emphasis. For people using nonvisual browsers, using strong will help them understand what sort of emphasis was meant to be put on the text.
Report to moderator   Logged

islanding
Key Keeper
Sr. Member
****
Posts: 313


I see, But why?


WWW
« Reply #2 on: September 21, 2003, 07:34:30 PM »

Hi,

When the left justification is applied the programming changes:
Code:
   <ul>
       <li><p align="left">This is the first item.</p></li>
       <li><p align="left">This is the second item.</p></li>
       <li><p align="left">This is the third item.</p></li>
    </ul>
Notice the difference. A new set of HTML markup tags has been introduced: <p align="left"> and </p>. The <p> and </p> are paragraph tags and indicate the beginning and end of a paragraph. In HTML paragraphs are double-spaced when displayed in the browser. When introduced in a list the paragraph tags provide the double-spacing. The align="left" is the left-justification.
Report to moderator   Logged

The Box said: "Install Win95 or better ..." So I installed Linux.
justjeni
Key Keeper
Sr. Member
****
Posts: 339



WWW
« Reply #3 on: October 13, 2003, 09:13:19 PM »

Quote
What's everyones opinion on the <strong> vs. <b> method of making text bold.  Is one better than the other?  why?

I just read an article recently (sorry, I can't remember where  Sad ) that said it's better for the SE's to use the <strong> tags as opposed to the <b> tags.  (Naturally I read this after building thousands of pages...sigh).

If I see this again I'll post it, but I'm all over the place so if anyone else finds it or something similar, please do let us know!
Report to moderator   Logged

Andy
Administrator
Veteran
*****
Posts: 5 752



« Reply #4 on: December 08, 2003, 10:53:02 PM »

Ched,

rather than battling with specialist HTML tag attributes I'd learn more about css style sheets then you can define your site style from one file and change the whole site appearance more easily. It saves having to contaminate your html with style definitions as per an MS Word. I guess it is also appreciated with the search engines since they have less code to crawl through and much less stuff to cache. Also accessibility-orientated search engines should appreciate this approach so they can easily ignore the style sheet.
Report to moderator   Logged

antony
Guest
« Reply #5 on: January 30, 2004, 12:15:17 PM »

with an increasing number of application becoming web enabled - eg. phones, fridges (for recipes), screen readers - there is an increasing need to seperate form from content.

EMPHASIS and STRONG are the original HTML tags for emphasizing and emphasizing strongly. BOLD and ITALIC were added later for formatting, i.e. form rather than content. Try speaking your web page allowed - try saying something ITALICALLY!

XHTML with CSS is the W3C recommended way and that will move on to XHTML with XSL soon.

HTML 4: http://www.w3.org/TR/1998/REC-html40-19980424/struct/text.html#edef-STRONG

http://www.w3.org/2000/10/DIAWorkshop/accesssep.html

http://www.webaim.org/discussion/mail_message.php?id=1204

http://www.w3schools.com/
Report to moderator   Logged
johnhask
Contributor
Full Member
***
Posts: 182


« Reply #6 on: November 14, 2004, 07:31:04 PM »

The proper way to increase line-spacing is throught css:

<head>
<style type="text/css">
<!--
li {
   line-height: 150%;
}
-->
</style>
</head>

<body>
<ul>
 <li>hello</li>
 <li>line 2</li>
</ul>
</body>

For better compliance, use strong.
Report to moderator   Logged

Pages: [1] Go Up Stumble Upon! Digg It! del.icio.us! Add to Technorati! ReddIt!  Send this topic Print 
+ Webmaster Key Forums
|-+ Webmaster Corner
| |-+ Site Design and Web Authoring
| | |-+ list formating and strong vs. bold

Jump to:  
« previous next »


Our Partners
RelmaxTOP Ranking System Web Hosting RelmaxTOP Ranking System
Staff Sites
12Noon[12Noon Gallery] Andy[Urgentclick]
Tamuril[Tamuril's Digital Art Exhibit] Sensovision
Powered by MySQL Powered by PHP We are hosted by Relmax Inc. |Our Privacy Policy | Sitemap
Powered by SMF 1.1.9 | SMF © 2006-2009, Simple Machines LLC
Forum design by Tamuril © 2005.
Valid XHTML 1.0! Valid CSS!