whyme
Apr 24 2005, 07:17 PM
 Being the XHTML and CSS freak that I am, I have decided to create a guidebook on developing websites using XHTML, CSS and implementing Web STandards. While this is not a step by step tutorial on making websites, and nor is it a beginners guide to CSS and XHTML, this is a handbook where you can learn from other website examples, and grab insight from my own opinions, and then implement it onto your own website. This guidebook is divided into three chapters, each covering a different aspect of XHTML, CSS, and Web Standards. With out further ado, here starts Chapter 1.   Ultimately the most important aspect of a website, layout is what drives your visitors to your site, what powers your imagination and what people judge you by. With a good layout, comes good traffic. In my opinion on what justifies as a good layout is: SimplicityDo not cram your site with thousands of little animated gifs, nor place random links with no apparent structure. The simplest sites often bring out the most potential. A great example is http://monc.se. Let’s take a look at their website.  Monc is displayed through the varied use of contemporary colors, brown, light grays, and white. The site starts off with a bare patterned navigation bar consisting of three links. This gives the user less stress of being bombarded with links and can avoid confusion among which links to click first. As we move down to the white content box, the logo is clearly displayed without any obstruction, letting the user know exactly what site they are seeing and the name of the site. A clear heading bar, “Who We Are” immediately tells the reader what the content will be about, and will provoke them to move to the main content. As we move onto the main content, one can see how the text is not scrunched up and removes the strain on the eyes. The effect that Monc used was the following CSS property: CODE font-size: 70%; line-height: 1.7em;
By shrinking the font size using percentages, the font size will not change through using different OSes of different browsers, therefore implementing a high accessible standard for everyone. The line-height attribute adds spacing between each line of text, making it more readable and spacious. Before I move onto the other aspects of the site, I’d like to note that the site uses the Verdana font for the entire site. Why use Verdana, studies show that we read 0.6 times slower when we are reading text off our computer screen. If you’re using some obscure font, like Comic Sans MS, your readers will take longer to read your text, and it will also be harder for them to read it, either way, Comic Sans MS is still a horrible font. This is why they created Verdana; Verdana was created specifically for websites. It is meant to have increased visibility and speed up the reading process, this is why you see almost all the major websites, like Microsoft, Apple, Sun, all use Verdana. They want their customers to get quick info, without slowing them down. Now moving onto the sidebar, the links are clearly displayed using borders and a stylish graphic to inform the user. Finally, on the bottom is a subtle yet noticeable footer where all the copyright and accessibility information is displayed. With these aspects added together, Monc gives us the power of using simplicity to create one of best the designs I have seen. As a sum up, here’s what implements a good site layout. - clear navigation - spacious content area with highly readable text - clean sidebar navigation - good use of contrasting colors - suitable amount of graphics, no over doing - crisp layout   You may have heard of XML, XML is the “eXtensive Markup Language”. XML is a relatively new markup language. In fact, XML is used to DEFINE mark up languages. And from XML comes XHTML, and new version of HTML derived from XML, this makes the coding more strict, and more readable by those who view or by the browsers that render your coding. You I’m happy with my HTML.While that’s what many may say, here are some good reasons to switch to XHTML. To quote Morden Pedersten: QUOTE • The browser will warn you immediately if there are syntax errors on your page (no need for validator) • It forces you to write better and more structured code • It's cleaner • Its "the future". Many embedded devices will only play with XHTML, since XHTML is much easier to parse than HTML.
 Why establish web standards? Why use the stupid w3.org HTML validator? Isn’t it just a waste of time cleaning up my coding? The reason why we validate our web pages is because we want them to be accessible through any browser, on any computer, by any means. Sure, Google has roughly 80 Validation errors, and Microsoft doesn’t even care. But what really matters in the validation process is that you can show others that your web site is made of clean coding. Sure, just because your page is valid doesn’t mean it will look any better, but validating them provides a world-wide standard for your website. Also, search engines like valid sites too.  Right now, I’m getting awfully tired, so I’ll finish off chapter three some time this week. hope you enjoyed reading this, -whyme edit:added matching graphic headers.
Reply
snlildude87
Apr 24 2005, 07:33 PM
Question: will XHTML validate Flash markup correctly? If it does, then I'm switching right away. Validate my website to see what I mean...
Reply
whyme
Apr 24 2005, 08:48 PM
Your site's working properly, and it's HTML 4.01 complaint. I can't seem to find your navigation bar.
Reply
snlildude87
Apr 24 2005, 09:00 PM
It's gone! But only temporarily as I'm redoing the layout. No big change, just some small touches on the site. You seemed to have validated my blog...try validating on of my pages deep inside the site (backup navigation is at the bottom).
Reply
Saint_Michael
Apr 24 2005, 09:06 PM
funny thought when i did the xhtrml 1.1 validation it did not accept flash for some reason, still have to look at getting my website xhtml validated
Reply
whyme
Apr 26 2005, 01:26 AM
There's been some limitations with the DTD validator, so that might have been what's causing the problems. btw, snlildude, nice header graphic.
Reply
snlildude87
Apr 26 2005, 01:55 AM
What do you mean limitations with the DTD validator? It seems that everything in my website is correct, but the stinking validator keeps saying my flash markup is wrong....maybe I should just put a button there that says my site is validated just to spite them.  Thanks for your compliment on the banner.  The next is somewhat not centered, but I'll fix that in a couple of months.
Reply
bjrn
Apr 30 2005, 07:08 PM
Very good post Whyme. I'll just write my thoughts on a thing you quoted. QUOTE(whyme @ Apr 24 2005, 08:17 PM) While that’s what many may say, here are some good reasons to switch to XHTML. To quote Morden Pedersten: QUOTE • The browser will warn you immediately if there are syntax errors on your page (no need for validator) • It forces you to write better and more structured code • It's cleaner • Its "the future". Many embedded devices will only play with XHTML, since XHTML is much easier to parse than HTML.
I'm not sure I agree with those things. Having a XHTML page (if you want to make it valid) will force you to write well-formed markup, but browsers will not warn for well-formed but incorrect XHTML. There are certain tags that aren't allowed to be nested within each other, or have to be nested in something else (like the <input> tag, which has to be inside a <div> or similar). Such things will not be warned about, because you can write well-formed XML without necessarily having valid XHTML. And that browsers giving warnings would be a good thing is something I am not certain of at all. Make an XHTML 1.1 (or 1.0) page, which is invalid XML, and send it as application/xhtml+xml and view it with Mozilla/Firefox. You'll get a big ugly syntax error message. Do you really want your visitors to see that?
Reply
whyme
Apr 30 2005, 09:50 PM
hehe, true to that point, only some broswers provide web page debugging, while a majority do not. hehe, snlildude, try checking out how other sites that are xhtml w/ flash layiout their content, you maybe missing something. Then again, I'm not sure.
Reply
bjrn
May 1 2005, 11:46 AM
In case anyone wants some further reading about XHTML, I suggest reading Ian Hickson's interesting piece called Sending XHTML as text/html Considered Harmful, in which he talks about the importance of sending XHTML as application/xhtml+xml to get any advantage over "normal" HTML. It's well worth the read if you are using, or considering using XHTML instead of HTML.
Reply
Latest Entries
Tyssen
May 16 2005, 04:30 AM
QUOTE(whyme @ May 16 2005, 02:16 PM) IE7 will be bringing upon huge expectations for all web designers alike, esp. CSS2 support and Code Validation.
It'll have to be exceptional for me to go back from using FF & Opera.
Reply
whyme
May 16 2005, 04:16 AM
IE7 will be bringing upon huge expectations for all web designers alike, esp. CSS2 support and Code Validation.
Reply
bjrn
May 14 2005, 02:33 PM
Definitely. And I hope that IE will start supporting XHTML and/or more advanced browsers get a higher market-share. XHTML seems to have some neat potential things, dito for CSS3.
Reply
Tyssen
May 14 2005, 03:55 AM
Hmmm, it all seems a bit confusing at the moment - the two running parallel enabling backward & forward compatability. But it sounds like the choice of doctype you use should be determined by the type of content you intend putting on your site.
Reply
bjrn
May 13 2005, 12:20 PM
Yeah, the W3C are working hard on writing XHTML specs, but there is also the WHATWG, which is working on "HTML5", or Web Applications 1.0 as it's currently called (note that they call it HTML5 in the DOCTYPE). Check out the WHATWG website, or read a bit of what Anne van Kesteren has written about it (Anne has a neat blog about markup related things). I think the W3C will continue working on XHTML, but there seems to be a demand from both web developers and browser manufacturers for a new (backwards compatible) HTML.
Reply
Similar Topics
Keywords : art, xhtml, css, web, standards, part, 1, markup, style, guidebook
- A Small Social Networking Site....
as a part of college project (9)
Style Not Displayed Correctly On Firefox [resolved]
(16) HI, All I have installed phpBB 3.0.1 and when browse it the style not displayed correctly on
firefox 2.0.12 but IE6. I have tested my browser ( firefox ) it is fine on other forums ( phpBB ).
After checking all the settings, I found that the style on firefox not downloaded correctly. Is
there any settings could get rid this issues ? Thanks P.S. I have also installed a bug tracker. It
is work fine. Eric, phpBB 3: http://devdoc.qupis.com/forum/ mantis:
http://devdoc.qupis.com/bugs/ ....
Getting Rid Of That Little Pot Belly
Or anyother little flabby part of your body :) (0) Hello Trap17, this is my first post at the forums and I want it to so some good, so I am going to
post this tutorial for some people who have noticed they have a little pot belly, and want to work
it off effectively. Or as a matter of fact, any other parts that have become flabby /biggrin.gif"
style="vertical-align:middle" emoid=":D" border="0" alt="biggrin.gif" />. 8 Minute Abs
Don't laugh, I know the name is corny, but just wait until you see the video! Ok, what
it is, is an 8 minute (for those who hadn't guessed) exercise which (quite q....
Bill Bailey's Part Troll... What Is That Thing?
(0) I was watching the Bill Bailey Part Troll DVD, and was wondering what that thing is on the left that
he has on the (our) left that he waves and it works as a kind of synthesizer. I Really don't
know what it is, and would like to. For those of you who don't know what I'm talking about
here is a youtube link http://au.youtube.com/watch?v=TqDl491ORqM It's the thing on the left
that he waves his hand near and it 'squeaks'. I first thought there was strings or
something in the loop at the front he was playing, but that seemed to be wrong, as it m....
New Sig From Me!
Kinda of gothic red rose style (2) Well it started out as a Black rose from a wallpaper i rendered it from. but i put it on a sig
and made it red and i came up with this hope you guys like. Rate and Comment... Daniel....
Xhtml Input Field Problem
(1) Hi, i use XHTML Strict and CSS, making one site. Here's some CSS code : CODE .LoginFromField
{ margin : 9px 3px 0 3px; width : 120px; height : 18px; float : left; color :
#666; background-image : url(./FormFieldDefaultBg.gif); background-repeat : repeat;
font-family : Verdana, Helvetica, sans-serif; font-size : 12px; border : 1px solid #aaa;
} XHTML code: CODE <?xml version="1.0" encoding="windows-1251"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "h....
An Awesome Retro Style Computer
(7) I love old video game consoles. I have emulators for NES SNES and Sega and just about every rom for
all of them on my computer now. I want to build a computer inside of a NES box. I've seen
people use the Micro-ATX boards to build Full Computers inside of power supply cases, so i know that
the technology is available. But I would also like to make it work like a nintendo with the
original controllers and everything. Is there someway to connect the old serial ports to a
motherboard, or is this just impossible. Let me know what you think....
Google Not Standards Compliant
(0) Ok, just out of curiosity I ran Google through the w3c validator to see if the coders wrote valid
code. I found out that Google had 50 errors. One of them was no DOCTYPE! I was surprised that
Google has sloppy coders like that. It's not just the fact that it is a big company that
generates millions of dollars, but the fact they have created one of the greatest search engines and
can't even code correct HTML. The code looks extremely messy. Here is a link to the validation
page: ....
Web Page Layouts
using Cascading Style Sheets (1) Here are a set of three Web pages I wrote a long time back when I was first starting to develop
sites. The first one is a two columned page with a full length sidebar for navigation links. There
are two that are identical except the sidebar positions are reversed. Another is "one way" to create
a three column layout. And lastly, a 'framed' look on a page. These are not
'fancy', you will need to look into the code and colourize it to suit, maybe set a width and
centre it if you want, whatever... Please feel free to snag the source and develop the pages....
Free Domain Name Application [denied]
Free Website: <xobirynth.trap17.com> (1) To generate an application for free web hosting please click here: Free Web Hosting
Request Form I would like to request free web hosting from Trap17. Please find my application
below. Your Registered Domain Name or Desired Trap17 Subdomain Name: xobirynth.trap17.com
Account Username: tj_style Introduction: My Life, My Style...! Email
Address: tj.style69@gmail.com Age: 21 Country Where I Live: Indonesia
My Websites Theme: Style69 Reason I Chose Trap17: Free an....
Ie8 Will Support Current Web Standards By Default
(2) Well it seems that the Internet Explorer Team is pushing out the news for their latest browser which
goes beta sometime this year, summer I believe. However, they set up a triple rendering mode for
this browser meaning that Internet Explorer 8 will be able to display website based on different
specs on web standards. Meaning that if someone coded really old school circa 1998 IE 8 will be
able to display that properly with no quirks mode, they will also render websites during IE 7 run,
and of course today's standards as well. To me, I think is the first original i....
Question About Css
Setting the style of titles. (5) Hello, I would like to ask a question about setting a style for titles on my web site. So far I have
managed to set my titles with a different capital by doing this: CODE h1.title:first-letter
{color: gold; font-size=xx-large; font-style: oblique; background: black}; Then my
titles come out with a big golden italic capital in a black box, and I get there by doing CODE
<h1 class="title">Blablablablabla</h1> However, if I also want a certain
background for the rest of my title, eg. a golden background or even a backgro....
Do You Believe In Astrology?
The Personality part or The Futeure (19) One day, I received a Phone call from the editor in chief of the magazine I write for asking me to
write the astrology section because the section's writer was sick. I didn't care alot for
astrology before, but for me to write this section, I had to study what astrology is.. As I read
more.. and dive deeper inside that strange space, as I see Aries fighting with Aries and The
Scorpion in love with The Cancer, I start to believe more and more in that astrology thing.
Astrology really reflects the personality things, giving a blurry but kind of truth full one.. so....
Writing An Essay - Part I: Sentences
Fragments and Run-ons (6) Writing essays is NOT a talent; it's a skill. As a skill, it can be honed and improved, like
playing basketball, carving wood, or cooking. True, there are those who just do it better, as in the
other areas mentioned, but that doesn't mean that you can't be good at it with a little
know-how and practice. As an English teacher, it's my job to show students how to do that, so I
figured that I would give everyone a few tips on how to improve your writing and, someday, make my
job a little easier. The first basic building block of a good essay is to have well....
Making A Song In Fruity Loops Part Three
part three precusion (1) ok part three now which covers the precusions setup of the small song i built for this tutorial.
the nesecery files can be downloaded here the image below is included in the precusions folder as
it mught not be entierly visable within this post so shold you need it its there also the images
purpose is to enable you to see what i am refering to within this tutorial lateron. now what i
have done above is blackd out every pattern that has nothing to do with the precusion. so the
patterns displayed in light grey are the only patterns i will be refering to. ok lets b....
Speak With Style
(2) When you work, especially in the executive levels, you often find yourself having to speak in public
to more than just a few people, such as your colleagues, clients, bosses etc. Public speaking can be
a daunting task, especially when you are worrying about whether you are getting your audience's
attention. Here are the 3 Ps you should take note of to maintain your confidence and eloquency in
public speaking. Plan Consider what your audience is interested in hearing. Identify key areas and
focus on these, at least initially. This technique is equally effective whe....
Signature Making Full Tutorial
Old style grunge, not used as much. (1) In this tut, I'm going to show you how to make this sig: OK then, lets get started,
Step1. Start off with a new document with whateve size you use. I use 350 x 150, but it is upto
you. Then, set your colors to basic by pressing D Step2. Fill it all with black by either
using the paint bucket or pressing ALT + BACKSPACE I have this: Step3. Make a new layer
by going to Layer>New>layer or by pressing CTRL + SHIFT + N and click OK. In this layer, take out
your favourite brush set, set the mode to soft light (It's on the right side of wh....
Runescape 2 Private Server Guide: Part 2
No-ip setup (19) Overview: In part 2 i will describe how to set up no-ip. no-ip is a simple way of hosting a
private server and it is most commonly used. if this does not work, there is another way i will tell
about in part 3. part 2 and 3 are short, yet effective guides that are aimed at helping you! If
you are not sure if it is working, it is probably because you have not read part 4: Port Forwarding
Chapters: Chapter 1: What is No-ip? Chapter 2: Initial Setup Chapter 2 Section A:
Creating an account Chapter 2 Section B: The DUC Chapter 3: Config Chapter....
Runescape 2 Private Server Guide: Part 1
making a private server (16) According to RuneScape TOS, as long as your private server does not connect/interfere with the
actual server this 3rd party software is not breaking the real RuneScape TOS. Please use this
information accordingly. If any RuneScape representative feels that this post is against your TOS,
please contact Trap17 admins via PM or email. Thank you. This is part 1, focused on making a
private server and such, if you would like, i will post more on customization in other parts.
Overview: This guide will explain the basics for building your very own rs private server&....
What Is Your Martial Art Level Belt?
What style do you do and what belt are you? (57) I do wadoryu Karate and I am a yellow belt Belt order goes White, White Black tag (don't know
if any other clubs do this), Orange,Red,yellow, Green,Blue,Purple,3 browns, 1st dan etc....
Web Page Tree Menu: Style Sheet - Javascript
(5) I got bored and lazy working on the things that I should do... so I end up creating this tree menu
for anyone to use if they find it interesting. Well the idea is to create a tree menu in a webage.
Instead of those linear menu it would be better to add more dynamic to your webpage with a tree
menu. Others use image rollovers. As expecte the tree menu should behave like the one in Windows
Explorer. When you click a node depending on its state it will pull down or pull up its chlid nodes.
I have achieved by exploiting one style sheet property, display . Basically this s....
Ftp Account Management
Part 2.2 of my 7 Part Cpanel Tutorial (1) This tutorial is an extension to my 7 tutorial series about the Cpanel. The 7 different Cpanel
tutorials can be found below. Part 1: E-mail Management Part 2: Useful Site Management Tools
Part 3: Useful Site Management Tools2.1 Part 4: Analysis/Log Files Part 5: Advanced Tools Part
6: PreInstalled Scripts, Extras, and Cpanel Options Part 7: Fantastico Detailed Cpanel
Tutorial Part 2.2: FTP Management For this tutorial, you will need to locate the Icon under
Site Management Tools labeled FTP Manager and also inside of the FTP:// Accounts area....
Sonic Style Characters/drawing Requests
(1) Can anybody tell me some websites that have to get some sonic style charries or if anybody is any
good at drawing their own charcaters like this one for instance... ....
Personality Test - With Signing Style
(8) QUOTE SINGLE UNDERLINE BELOW THE SIGN These persons are very confident and are good
personalities. They are a little bit selfish but believe in "Happiness of human life". TWO DOTS
BELOW THE SIGN These persons are considered to be Romantic, can easily change their fiancees as if
they change their clothes. They prefer beauty in other persons & they themselves try to look
beautiful. They easily attract others. SINGLE DOT BELOW THE SIGN These persons are more inclined
towards classical arts, simple & are very cool. If you loose faith with them, then these perso....
Are You Part Of The 2% Or The 98%?
mind guessing game (18) 2% or 98% of Population?Just follow these instructions, and answer the questions one at a time and
as quickly as you can! Again, as quickly as you can but don't advance until you've done
each of them .... really. Now, scroll down (but not too fast, you might miss something). THINK of
a number from 1 to 10 MULTIPLY that number by 9 If the number is a 2-digit number, ADD the
digits together Now SUBTRACT 5 DETERMINE which letter in the alphabet corresponds to the
number you ended up with (example: 1=a, 2=b, 3=c,etc.) THINK of a country that....
New Yorker Style Pizza Vs. Chicago Deep Dish
(12) I've always thought it was interesting when cities claim to have the best pizza cos it's
'unique' to them, like the New Yorker or the Chicago Deep Dish, etc. Which one do you prefer
cos I know which one I like best cos of hometown pride.....
Microsoft Publisher
A part of Microsoft Office 2003 (7) Hello all, I just got my hands on the Microsoft Publisher, which comes with the Microsoft Office
2003. I feel this is the best website designing tool ... much better than Dreamwevar and the likes.
I had finished making my site in under 10mins. Also the menu options, to put on your site are very
good n advance. The best part is that it not only lets you create fully customizable sites without
knowing absolutely anything about HTML, it also allows you to do other publishing tasks like making
greetings, stationary, visting cards etc. This is not an advert, but i think ....
Your Winning Eleven
Who will be part of your soccer dream team? (6) I'd Like an International Outfit mostly with German players. I prefer a fighting team rather
than one that is star-studded. FORMATION: 4-1-2-1-2 Goal Keeper - TIMO HILDEBRAND, Vfb Stuttgart
Very Consistent player. Should be Germany No. 1 by now. OLi isn't as fast he used to be. Jens
is mediocre if you ask me. Left Back - PHILLIP LAHM, Vfb Stuttgart Attacking minded, pacey Winger.
Center Back - JOHN TERRY, Chelsea Good positional Sense, good in the air and in set pieces.
Center Back - JENS NOWOTNY, Bayer 04 Leverkusen Top Rated European Defender, Can t....
Turning An Image Into A Cartoon Style - Photoshop
Tutorial on cartooning images. (30) This tut will show you how to make a photo look cartoonish in three easy steps... 1)Open your
image in photoshop, doesnt really mater what size or shape anything really a landscape, city, or a
person. I am using a picture of a football player in this example 2)Go up to
Filter>Blur>Gaussian Blur and set the radius at 3.0 or higher depending on the effect your looking
for. 3)Last go Edit>Fade Gaussian Blur. A window will pop up... set the mode to darken for tha
cartoonish effect or to any other mode for plenty of other effects. Lower the opacity if you
don't....
Avatars
create your own, anime-style (10) /smile.gif' border='0' style='vertical-align:middle' alt='smile.gif' /> i know it's easy to
create your own forum avatar (or snatch it from another site), but in case you think you want some
anime-style avatar which you can configure easily (in flash), here's one:
http://dookyweb.com/avatars.swf features include customizing skin color, eyes, chin, hair, mouth
and facial hair. plus you can add some accessories if you like to suit your personality.
/biggrin.gif' border='0' style='vertical-align:middle' alt='biggrin.gif' /> one small feature
missing is the ....
Looking for art, xhtml, css, web, standards, part, 1, markup, style, guidebook
|
|
Searching Video's for art, xhtml, css, web, standards, part, 1, markup, style, guidebook
|
advertisement
|
|