Massassi Forums Logo

This is the static archive of the Massassi Forums. The forums are closed indefinitely. Thanks for all the memories!

You can also download Super Old Archived Message Boards from when Massassi first started.

"View" counts are as of the day the forums were archived, and will no longer increase.

ForumsShowcase → Website UPDATED
Website UPDATED
2005-04-11, 3:40 PM #1
Hello, I'm sorry for creating a new thread, but I just updated my site, can you test it please in the most browsers possible? Also check out for the colored scrollbars in Diamant/Graphite/Proprietes
pages.

Here is the adress: Le Carbone (UPDATED)
2005-04-11, 5:25 PM #2
A website about Carbon? In French?
2005-04-11, 5:48 PM #3
I'm running firefox, and it works just fine.

But why does the diagram show the two 1s electrons right up next to each other?
Pyro Universe The ultimate place for fireworks lovers! Learn how to put on your own show! Fireworks diagrams, instructions, pictures, safety tips, links, and a message board.

Boomtown Fireworks - Washington State fireworks retailer - huge selection!
2005-04-11, 6:18 PM #4
Ok cool if it's working in Firefox, it should work in Opera. Please more tests... And Katt, the two electrons are grouped together cause when one orbital is full electrons group together.
2005-04-11, 7:17 PM #5
i still say the image should clear up when you put your mouse over it.
[01:52] <~Nikumubeki> Because it's MBEGGAR BEGS LIKE A BEGONI.
2005-04-11, 9:31 PM #6
Quote:
Originally posted by pogo_air
And Katt, the two electrons are grouped together cause when one orbital is full electrons group together.


What? Are you saying that they stick to each other? Electrons are tiny, but they have strong negative charges...they don't "want" to be anywhere near each other. When drawing orbit-style diagrams like that, you usually place them as far away as possible from each other to represent that (like you did with the second energy level). Do a Google image search for "carbon atom" to see what I'm talking about.
Pyro Universe The ultimate place for fireworks lovers! Learn how to put on your own show! Fireworks diagrams, instructions, pictures, safety tips, links, and a message board.

Boomtown Fireworks - Washington State fireworks retailer - huge selection!
2005-04-12, 5:29 AM #7
Quote:
Originally posted by pogo_air
Also check out for the colored scrollbars in Diamant/Graphite/Proprietes pages.


Note that this is an IE-only feature. Other browsers will theme scrollbars normally.

http://jigsaw.w3.org/css-validator/validator?profile=css2&warning=2&uri=http%3A//xthost.info/carbone/graphite.htm

Your server seems to hate the CSS validator now (you can try pasting the CSS code into the validator on the main page).

http://validator.w3.org/check?verbose=1&uri=http%3A//xthost.info/carbone/graphite.htm

About the first few "errors": I don't think META tags are needed anymore. Google, for example, which is the only search engine that matters to me, ignores META tags and uses the page content.

Real errors start at #42. Image tags must have an alt attribute that is shown if the image cannot be loaded or if the user is using a text-browser. If you don't want one just put alt="". Also, for good cross-browser compatibility, use the title attribute for a tooltip, which shows up in Firefox and IE (alt does not show as a tooltip as Firefox).

Close <img> tags with />

XHTML has no <p>, use <div> or a few <br />s. Don't forget to close 'em too. :)

2005-04-12, 7:23 AM #8
XHTML does have <p>, however unlike HTML4.01 you need a start and end tag: <p>My Paragraph</p>. although it is often better to use <br />.

As for meta tags, you're supposed to have a content-type tag.

For XHTML it should be:
Code:
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />


Of course IE and it's terrible standards support doesnt supprt the application/xhtml+xml MIME type so you'll have to send it as text/html (which from a technical point of view makes your code invalid because it's being interpreted as html4 rather than xhtml. Anyway, I digress)

Heres what you'll need to use:
Code:
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />


Oh and I dont know why, but the w3c validator suggested using that charset over UTF-8 so that's what i've put there. The reason your meta tags are not validating is because they're in capital letters and they're not closed.
TheJkWhoSaysNiTheJkWhoSaysNiTheJkWhoSaysNiTheJkWho
SaysNiTheJkWhoSaysNiTheJkWhoSaysNiTheJkWhoSaysNiTh
eJkWhoSaysNiTheJkWhoSaysNiTheJkWhoSaysNiTheJkWhoSa
ysNiTheJkWhoSaysNiTheJkWhoSaysNiTheJkWhoSaysNiTheJ
k
WhoSaysNiTheJkWhoSaysNiTheJkWhoSaysNiTheJkWhoSays
N
iTheJkWhoSaysNiTheJkWhoSaysNiTheJkWhoSaysNiTheJkW
2005-04-12, 8:16 AM #9
Yeah I forgot to mention that >_<. *ML is supposed to be in lowercase, not uppercase. That could be why it's not parsing the meta tags correctly heh.

2005-04-12, 8:43 AM #10
Quote:
Originally posted by TheJkWhoSaysNi
XHTML does have <p>, however unlike HTML4.01 you need a start and end tag: <p>My Paragraph</p>. although it is often better to use <br />.


It's actually rarely better to use <br />. The only time you'd want <br /> is when you want to force a line break without a new paragraph, this is a relatively uncommon usage. Your content should be formatted just like you'd format a word processed document. Using <br /> also prevents you from having a css hook for the following content.

The trick to good markup is to have a css hook for everything without having to introduce extra tags.
Detty. Professional Expert.
Flickr Twitter
2005-04-12, 9:12 AM #11
Generally I've found it best to use <br /> when you're working with single lines of text, and <p> when you have a block of text. For eample this paragraph would be best suited in <p> tags however if you wanted something like:

Best Viewed in Mozilla Firefox
© 2005.

Like that on seperate lines it's best to use <br />.

The problem with <p> is that unless you style it adds space above and below the elements area, so if you're just wanting to format a text document <br /> can be better. With <p> (unless you style it) you cannot get text on the very next line, it will leave a gap.

Anyway I generally use <br /> instead of <p> it just looks neater to me and I find it easier to work with. It's probably because i'm used to \n :p
TheJkWhoSaysNiTheJkWhoSaysNiTheJkWhoSaysNiTheJkWho
SaysNiTheJkWhoSaysNiTheJkWhoSaysNiTheJkWhoSaysNiTh
eJkWhoSaysNiTheJkWhoSaysNiTheJkWhoSaysNiTheJkWhoSa
ysNiTheJkWhoSaysNiTheJkWhoSaysNiTheJkWhoSaysNiTheJ
k
WhoSaysNiTheJkWhoSaysNiTheJkWhoSaysNiTheJkWhoSays
N
iTheJkWhoSaysNiTheJkWhoSaysNiTheJkWhoSaysNiTheJkW

↑ Up to the top!