Computer Science Canada

including .css file into html

Author:  Homer_simpson [ Fri Aug 01, 2003 9:32 pm ]
Post subject:  including .css file into html

how do i do that?

Author:  Amailer [ Fri Aug 01, 2003 9:37 pm ]
Post subject: 

including that is ez.
code:

<LINK REL=stylesheet HREF="MA DAMM STYLE.css" TYPE="text/css">

Author:  PaddyLong [ Fri Aug 01, 2003 11:06 pm ]
Post subject: 

this is kinda unrelated... but just a heads up .. in what they're hoping will become the new standard, XHTML (looks like you starting to use it with the / at the end of the tag Razz)... all tags will be lower case ... Wink

Author:  Homer_simpson [ Sat Aug 02, 2003 3:09 am ]
Post subject: 

I have no idea what xhtml even is all i wanna do is use css to make my site look little better...

Author:  UBC_Wiskatos [ Sat Aug 02, 2003 12:24 pm ]
Post subject: 

PaddyLong wrote:
this is kinda unrelated... but just a heads up .. in what they're hoping will become the new standard, XHTML (looks like you starting to use it with the / at the end of the tag Razz)... all tags will be lower case ... Wink


Also XHTML requires a space, such that <blah /> not <blah/>.

Author:  Amailer [ Sat Aug 02, 2003 12:34 pm ]
Post subject: 

that was a mistake there should be no / at the end of the tag -.-

Author:  rizzix [ Sat Aug 02, 2003 7:38 pm ]
Post subject: 

UBC_Wiskatos wrote:
PaddyLong wrote:
this is kinda unrelated... but just a heads up .. in what they're hoping will become the new standard, XHTML (looks like you starting to use it with the / at the end of the tag Razz)... all tags will be lower case ... Wink


Also XHTML requires a space, such that
code:
<blah /> not <blah/>
.



no thats not true!
it can be
code:

<blah/>


here's the proof

Author:  Homer_simpson [ Sat Aug 02, 2003 8:21 pm ]
Post subject: 

what's xhtml anyways?

Author:  PaddyLong [ Sun Aug 03, 2003 1:55 am ]
Post subject: 

heh, it's gonna be new standard for websites ... basically HTML but stricter ... for example all tags and attributes are lower case and all attribute values are in quotes ... also all tags must be closed (like instead of just <p>some paragraph ... you now would have <p>some paragraph</p> and instead of just <br> you would have <br />)

so basically it'll force things to be more standardized and force better practises (I always close my paragraph tags any way, because to me it's cleaner .. )


yeah the space before the / is so that it won't screw up browsers that don't have the interpretation for it built in yet

Author:  UBC_Wiskatos [ Sun Aug 10, 2003 6:52 pm ]
Post subject: 

rizzix wrote:
UBC_Wiskatos wrote:
PaddyLong wrote:
this is kinda unrelated... but just a heads up .. in what they're hoping will become the new standard, XHTML (looks like you starting to use it with the / at the end of the tag Razz)... all tags will be lower case ... Wink


Also XHTML requires a space, such that
code:
<blah /> not <blah/>
.



no thats not true!
it can be
code:

<blah/>


here's the proof


What the hell, that contradicts the XML standard.

Author:  PaddyLong [ Mon Aug 11, 2003 12:04 am ]
Post subject: 

it needs to have the space so that browsers that don't know what it's there for don't screw up because of it

Author:  rizzix [ Mon Aug 11, 2003 5:20 pm ]
Post subject: 

UBC_Wiskatos wrote:
rizzix wrote:
UBC_Wiskatos wrote:
PaddyLong wrote:
this is kinda unrelated... but just a heads up .. in what they're hoping will become the new standard, XHTML (looks like you starting to use it with the / at the end of the tag Razz)... all tags will be lower case ... Wink


Also XHTML requires a space, such that
code:
<blah /> not <blah/>
.



no thats not true!
it can be
code:

<blah/>


here's the proof


What the hell, that contradicts the XML standard.


well that actually does not contradict the XML standard.. want some more proof?

here's how the empty tag is defined (u need to know a bit on regex to understand this):

'<' Name (S Attribute)* S? '/>'

Author:  theguru [ Wed Oct 26, 2005 4:46 pm ]
Post subject: 

it really doesn't matter which way you do it in xhtml

code:
<br></br>
<br />
<br/>


are all the same. i personally don't like xhtml, it takes all the fun out of coding and makes it look more boring

Author:  md [ Wed Oct 26, 2005 5:16 pm ]
Post subject: 

Way to bring up a two year old topic... and <br> is not valid xhtml, only <br/> and <br /> are; </br> isn't even a tag.


: