Here are just some general tips, helpers and time-savers for HTML and CSS. HTML Ideally, you should be working under the XHTML 1.1 doctype specification. Some reasons: - Improved semanticism - make use of the elements available appropriately to convey the information as it was intended.
- Improved understanding - because of an increase in semanticism, it's easier for your audience to understand what your trying to convey.
- Cleaner code - due to the deprecation of some elements and the strict requirements of nesting, closing and structure, your code becomes much cleaner and hopefully more readable.
- Faster - cleaner code = faster generation; the browser doesn't have to do as much work to render your site.
It's not difficult to work under XHTML as apposed to HTML. Infact, to clients it shows that you are with the times and that your truly care about your audience, not just your own design. You'll often find people saying "I want a CSS, not a table site". This is an inaccurate conception. HTML and CSS are two different modules connected by a rule or link. HTML is used to present the data where as CSS is used to style the data. Tables are part of HTML and should be used when tabular data is being displayed. CSS should be used to style your site, from structure to typography and forms to colour. The use of tables to create layouts are long-gone. You shouldn't depend on divisions (<div>) or span (<span>) neither. Only use the div and span elements when you are absolutely sure that your need them and your site layout will suffer without them. It is possible to create layouts without using divs or spans. When creating forms, leave nothing out - fieldset, legends and labels are all part of a form (and inputs) so use them. They'll make your form look better when the styles are off (and can make your form spectacular when the styles are on). Remember your block-level elements from your inline-level elements and their rules: - Inline-level elements must reside within block-level elements.
- Inline-level elements are the height and width of the contents - the more there is in the contents, the greater the size of the element. Inline-level elements do not expand into the white-space (unless told otherwise by the CSS)
- Inline-level elements should not occur within inline-level elements.
- Block-level elements can reside in other block-level elements, but should not be in inline-level elements
- Block-level elements usually occupy the whitespace around them to set height and width. However, you'll find that most block-level elements further expand the height and/or width like inline-level elements.
CSS When working with floats, ensure you use CODE display: inline to all elements which float. This is to help IE out with it's little issue of not being able to do mathematics, whereby it will display floats incorrectly (and causes some funny looking layouts). To save time in making your CSS, use CODE *{padding: 0; margin:0} then CODE ol, ul, select{margin-left: 1.5em;} to quickly remove the padding and margins of all elements. I find this a great time-saver especially as I don't end up repeating on almost every selector the same padding / margin properties. The ol, ul, select fixes the margin being put out of alignment by the global selector (*). Hiding an element from the screen is achieved one of two ways: CODE display: none or CODE visibility: hidden . The first simple removes the element when styles are enabled. The effects of this element are negated. This makes it highly useful when you need additional informatio on your site to tell disabled styles or text-browsers something that the visual browser (CSS enabled) would understand already from the design. The second is more useful (hidden visibility) when you want to hide an element but you want the effects of its existence to occur on the document structure. For example, say you wanted to split two images with a 2em gap using a horizontal ruler (hr) but your didn't want to see the ruler. You can simply use CODE hr.splitter{visibility: hidden; width: 2em; and hey presto! The images are split with a 2em gap and no sign of the hr unless you view it without the styles. Avoid absolute positioning at all costs. It is a terrible CSS feature that will hopefully be deprecated as soon as posssible - either that make it more usable. Seeing as though the latter won't happen, AVOID IT. Seriously, there is no need for absolute positioning. You can achieve the same effects by using floats and taking your time when making the layout. Don't descriminate browsers. If you create your layout properly, there will be very little or no need to throw in a billion of bugswats for IE. I hardly ever run into a bug, and when I do, it's been down to my own arrogance. The lessons I have learnt is that time and patience are required. Additionally, don't rely on advanced selectors like CODE a[rel^="external"] . They don't work in most browsers (only the really compliant ones) and using class selectors CODE a.external-link allow for much nicer reading and cross-browser friendliness. Only use the advanced selector if you want to give a treat to the compliant browsers or if you want to tell them something that you don't want non-compliant (like IE) browsers to read. NEW CONTENT: Attribute selectors (e.g. the above rel^="external) are not-so-common simply because of their lack of support in a lot of browsers. However, they can be really cool to use AND when they are more widely supported will more-than-likely see the end of ID and CLASS selectors. Why? Because unlike these two monsters, you can do string query for type matching through the CSS. Sound baffling? Well, it's not! For the sake of sakeness, imagine all browsers supported attribute selectors in the following examples. Let's say we want all <a> elements with the attribute title="homepage" to show with a little icon of a home. We could use a class to define this, but what would be the point in extending our code needlessly? Through pure CSS (and a little magic) we can make all these show a home icon without even touching the class or id selectors. Here's your 'code': CODE a[title="homepage"]{padding-right: 20px; background: url(images/icons/home.gif) center right no-repeat;} The a[title="homepage"] is where our magic lies. Attribute selectors are encased in the square brackets. They can be tied to anything that can have an attribute and depending on your browser, there are no set attributes (although consideration of the standards should be taken). What happens if we have more than one relation to the document linked to? Because of the nature of the attribute selector and it's available properties, we can do more magic to query the string. Say we had two, space seperated relatives in the link to the home page. CODE <a href="/" title="Homepage" rel="index start">Home</a> And say we only wanted to pick out the "start", because index occurs in other places. We could use the absolute reference as shown in the previous example. Or we could use one of three other matches (or all at the same time with group selectors): wildcard (*), space-seperated (~) or end-of-string ($). Examples: CODE a[rel*="start"] This will search the entire string for the word "start". Be careful, as a rel attribute with "starting" will be matched as well. CODE a[rel~="start"] This will match the string start when in a space-seperated list. CODE a[rel$="start"] Finally, this will match "start" where it occurs at the end of the list. I know of only 5 match criteria (~|$^*) however, there may be more. Note that the ^ does the opposite of $, in that it gets the string from the beginning. Like $, * will find the word within other words (e.g. will locate start in starting and apply the style to it). Personally, I would prefer this method of selection than through the use of ID and CLASSes, it would make things pretty much easier. Descendants would still exist, e.g. CODE p > a[rel*="external"]:hover acronym{color: #bbcc66;} Would still work, just the same as if <a> had the class attribute of "external": CODE p > a.external:hover acronym{color: #bbcc66;} Whilst it may look shorted (the class selection), it doesn't provide as many opportunities.
Reply
Arbitrary
Mar 5 2007, 01:12 AM
While I agree that ideally one should be working with XHTML 1.1 Strict, I still believe that it's best to adapt to the situation. Not every one of your visitors have browsers that support the XHTML standards (say strict). Therefore, it's better to figure out what the majority of the visitors want and do that instead. And there are some changes to XHTML that I just don't get. Like how does changing the bold tag from <b></b> to <strong></strong> make the code "cleaner" or "faster"? It seems to me that <strong></strong> is obviously longer than <b></b>, so how could it possibly be faster? Although I believe sticking to the standard is a good thing, I fail to see how the current coding methods are improvements from before. QUOTE
You'll often find people saying "I want a CSS, not a table site". This is an inaccurate conception. HTML and CSS are two different modules connected by a rule or link. HTML is used to present the data where as CSS is used to style the data. Tables are part of HTML and should be used when tabular data is being displayed. CSS should be used to style your site, from structure to typography and forms to colour. The use of tables to create layouts are long-gone. You shouldn't depend on divisions (<div>) or span (<span>) neither. Only use the div and span elements when you are absolutely sure that your need them and your site layout will suffer without them. It is possible to create layouts without using divs or spans.
Agreed. You can have a table for the layout an CSS all-in-one. I remember I did something like that for my first website. CSS for layouts is quite helpful--all the styles in one compact file. There's no need to repeat styles over and over again for every tag; it's a bit like writing functions to reuse the code instead of copying and pasting it. Nonetheless, I don't see what's wrong with using <div>'s or <span>'s in a site. Many well-coded CSS-heavy sites that I've seen almost always use them. There really aren't that many other tags to latch a style onto besides <div>, <p> etc. So use what you have when you want. Neither of those two tags are "bad". QUOTE When creating forms, leave nothing out - fieldset, legends and labels are all part of a form (and inputs) so use them. They'll make your form look better when the styles are off (and can make your form spectacular when the styles are on).
This I do not agree on. While it's nice and dandy to use fieldsets and legends (they do make the form a lot clearer), it's not recommended since numerous browsers don't support it (and, from what I've heard, make a mess of it). You'll have to decide what browser the majority of your audience uses--if the majority uses Firefox, then depending heavily on fieldsets and legends can be very useful. But if they use IE6, forget it. They won't see anything and you should depend on something else to highlight sections of your forms. (Say <div>'s or something) Ahhh...the horrors of cross-browser compliance. Ugh. I hate how there's so many different browsers; it makes it insanely difficult to cater to everyone's tastes. Why can't everyone just be a bit more...compliant and change their browser as needed?
Reply
TavoxPeru
Mar 5 2007, 03:57 AM
Wow, thanks for the tips, some of them i already knew but the related with images with gap dont  . Arbitrary i think that the benefits of changing the bold tag from <b></b> to <strong></strong> is more related with the Accesibilty fact and not with make the code "cleaner" or "faster". Best regards,
Reply
Quatrux
Mar 5 2007, 08:36 AM
Well, I read about it some time ago and I think I found the same explanation, that the <b></b> tag is a style, which needs to be done with CSS, font-weight: bold; When I think of it, I don't use b tag, only sometimes ;D But strong tag was there long before xhtml and the effect was almost the same as with b tag.  QUOTE A quick explanation, but hopefully understandable. "Bold" is a style. HTML was never meant to be about styles. Do some searches for "Tim Berners Lee" and "the semantic web". <strong> is semantic - it describes the text it surrounds ("this text should be stronger than the rest of the text you've displayed") as opposed to describing HOW the text it surrounds SHOULD BE DISPLAYED ("this text should be bold").
Reply
closed
Mar 6 2007, 04:28 PM
and also used <em></em> instead of <i></i>, additional points in semantic as stated above.
Reply
QUOTE(Arbitrary) While I agree that ideally one should be working with XHTML 1.1 Strict, I still believe that it's best to adapt to the situation. Not every one of your visitors have browsers that support the XHTML standards (say strict). Therefore, it's better to figure out what the majority of the visitors want and do that instead. If a browser doesn't support the standard then it will fall back into quirks mode, therefore displaying the site in it's basic form anyway. So support for doctypes is not enitrely necessary. Additionally, XHTML 1.1 does not come in any flavours other than itself, so unlike 1.0, there are no Frames, Traditional, Loose, Strict, etc. QUOTE(Arbitrary) And there are some changes to XHTML that I just don't get. Like how does changing the bold tag from <b></b> to <strong></strong> make the code "cleaner" or "faster"? It seems to me that <strong></strong> is obviously longer than <b></b>, so how could it possibly be faster? Although I believe sticking to the standard is a good thing, I fail to see how the current coding methods are improvements from before. As Quatrux quite rightly said, the <b> and <i> are style formatting - something HTML wasn't developed to do. <strong> and <em> however tell it to make it a point which needs consideration from the rest of the information. It doesn't make it faster or cleaner, but it does give your site greater semanticism. QUOTE(Arbitrary) Nonetheless, I don't see what's wrong with using <div>'s or <span>'s in a site. Many well-coded CSS-heavy sites that I've seen almost always use them. There really aren't that many other tags to latch a style onto besides <div>, <p> etc. So use what you have when you want. Neither of those two tags are "bad". The W3C and many other webmasters don't find anything wrong with using divs or spans, and neither do I. The point I was trying to make is don't rely on them heavily. For example: CODE <div id="heade"><p>Website Title</p></div> <div id="body"><p>Some text some text some text</p></div> <div id="footer"><p>Copyright me 2007.</p></div> Is totally wasteful as your using the divs for no reason other than to say in the code that this is a section. The following makes more semantic sense: CODE <h1>Website Title</h1> <p>Some text some text some text</p> <p id="footer">Copyright me 2007.</p> See, it is much nicer and won't take as much styling. I know it's not very common to come across, but it does happen (well variations of the above). QUOTE(Arbitrary) But if they use IE6, forget it. They won't see anything and you should depend on something else to highlight sections of your forms. (Say <div>'s or something) Actually, IE5+ is fine with forms and the fieldset / legends / labels. I've just being designing on IE6 and also tested on an older machine's IE5.5 and it appears to be fine. QUOTE(Arbitrary) Ahhh...the horrors of cross-browser compliance. Ugh. I hate how there's so many different browsers; it makes it insanely difficult to cater to everyone's tastes. Why can't everyone just be a bit more...compliant and change their browser as needed? And where would the fun be in that? Thanks for your comments Arbitrary, Quatrux, TavoxPeru and closed.
Reply
closed
Mar 6 2007, 06:27 PM
QUOTE(mik @ Mar 7 2007, 12:57 AM)  ... Is totally wasteful as your using the divs for no reason other than to say in the code that this is a section. The following makes more semantic sense: CODE <h1>Website Title</h1> <p>Some text some text some text</p> <p id="footer">Copyright me 2007.</p> See, it is much nicer and won't take as much styling. I know it's not very common to come across, but it does happen (well variations of the above). ... the advantages of your approach is that the code is cleaner and neater, more points in semantic web, it seems that your are focused on the contents rather than the design which means good web site *cheer* btw for the hobbyist like me, and for the sake of my heavy gfx and design styling an additional divs make sense, like drop shadow here, gradient their, rounded on that corner, marker to the side and soon... and i don't hesitate to use more divs if needed. it seems that different people/designer have different approach in coding xhtml. love your approach
Reply
Quatrux
Mar 7 2007, 06:45 AM
QUOTE If a browser doesn't support the standard then it will fall back into quirks mode, therefore displaying the site in it's basic form anyway. So support for doctypes is not enitrely necessary. Additionally, XHTML 1.1 does not come in any flavours other than itself, so unlike 1.0, there are no Frames, Traditional, Loose, Strict, etc. In addition, it is a bad practice to not declare a doctype for your site or any site and only use html head /head body /body /html due to some things by the browser may be displayed differently, for example when you don't declare a doctype, on IE7 browser, the css :hover only works with anchor links and not on other elements.
Reply
FirefoxRocks
Mar 8 2007, 05:07 AM
QUOTE HTML Ideally, you should be working under the XHTML 1.1 doctype specification. Some reasons:
* Improved semanticism - make use of the elements available appropriately to convey the information as it was intended. * Improved understanding - because of an increase in semanticism, it's easier for your audience to understand what your trying to convey. * Cleaner code - due to the deprecation of some elements and the strict requirements of nesting, closing and structure, your code becomes much cleaner and hopefully more readable. * Faster - cleaner code = faster generation; the browser doesn't have to do as much work to render your site. First of all, XHTML 1.1 MUST be served with application/xhtml+xml MIME type, which can be tricky. Internet Explorer doesn't support this MIME type (it requests a File Download  ) so you will miss many visitors. If you serve XHTML 1.1 over text/html (usually), the document is TRULY XHTML 1.1. I recommend using XHTML 1.0 Strict (almost same) instead, otherwise deal with some server-side content negotiation scripts! QUOTE You'll often find people saying "I want a CSS, not a table site". This is an inaccurate conception. HTML and CSS are two different modules connected by a rule or link. HTML is used to present the data where as CSS is used to style the data. Tables are part of HTML and should be used when tabular data is being displayed. CSS should be used to style your site, from structure to typography and forms to colour. The use of tables to create layouts are long-gone. I agree, CSS is the way to go. However I still use tables for 1 of my sites because I want to retain utmost compatibility with all browsers and IE positions things funny (tried many, many tips). In my XHTML tutorial, I have informed that Tables for layout is NOT the way to go. QUOTE You shouldn't depend on divisions (<div>) or span (<span>) neither. Only use the div and span elements when you are absolutely sure that your need them and your site layout will suffer without them. It is possible to create layouts without using divs or spans. If you use <div> or <span>, make sure you have a good use for them and that you probably use heavy CSS coding on them. <div> with an id attribute is not very useful because it is a one-time use thing, use it only if you are covering a large area. QUOTE When creating forms, leave nothing out - fieldset, legends and labels are all part of a form (and inputs) so use them. They'll make your form look better when the styles are off (and can make your form spectacular when the styles are on). I love using <fieldset> as well as <legend>, not to forget <label>. They are part of the Section 508/Web Accessibility Initiative guidelines so that my audience is larger for disabled people and/or screen readers. I don't know how you can make the forms look "spectacular" though.  Those CSS tips are great! I have never even seen such an advanced selector  The part explaining browsers was really helpful. Thanks for the great info!
Reply
TavoxPeru
Mar 8 2007, 09:07 AM
QUOTE(FirefoxRocks @ Mar 8 2007, 12:07 AM)  If you use <div> or <span>, make sure you have a good use for them and that you probably use heavy CSS coding on them. <div> with an id attribute is not very useful because it is a one-time use thing, use it only if you are covering a large area. I love using <fieldset> as well as <legend>, not to forget <label>. They are part of the Section 508/Web Accessibility Initiative guidelines so that my audience is larger for disabled people and/or screen readers. I don't know how you can make the forms look "spectacular" though.  Those CSS tips are great! I have never even seen such an advanced selector  The part explaining browsers was really helpful. You can get "spectacular" results for your forms if you apply the advanced selectors :hover and :focus in your fieldset, input and textarea tags, but, as usual, you don't see it in IE -¿IE7+?- only in FF. I'm just redesigning a client's website -it's almost done  - in which i use these selectors with my forms, take a look to these pages: BTW, from the last website is where i found the use of these selectors. Best regards,
Reply
Latest Entries
TavoxPeru
Mar 13 2007, 03:28 AM
QUOTE(mik @ Mar 12 2007, 02:41 PM)  I've not come across any problems with the XHTML 1.1 with application/xhtml+xml MIM type, it works perfectly in my IE6, IE5.5, Opera 9x and FF2.x can you please provide a link to the article proving this please?
The advanced selectors (also known as attribute selectors) are quite handy if you're willing to make styles that are solely based on a specific element (or elements). Thank you for pointing it out that you've never seen such, as I have now added to it.
Thanks for all the feedback guys (and gals?). Yes please provide a link to the article proving this because i don't have also any problems with the application/xhtml+xml MIME type with IE6 and FF2.x. BTW, i read a couple of articles related with this but when i test it i don't have any problems as i say, in both ways i get the same result: Now, i have a little problem when i use big images and try to load the webpage containing it more faster, so, I remember a technique that do it and works perfectly with HTML 4.x, it consists to split this big image into a group of several smaller images and then assembly this group of images with a table to show the big image, but when i try to use this technique with XHTML 1.1 i dont get the same result, does anybody knows how to do this???? Best regards,
Reply
Similar Topics
Keywords : quick, tips, html, css
- Good Books For Html And Css Beginners
(1)
Indentation In Html
(4) Whenever I start a new project one of the first things I do is put in a base index.php page. Yes,
it's a .php file, but I won't be looking at the PHP just yet. Normally, it looks a little
something like this: CODE <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html
xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head> <title>Title</title> <meta http-equiv="c....
Style P And H? Html Tags
(2) Well, I have found that css was very hard to predict and precise control their apperance. When mix
and use the p and h? tags. Their apperaence were not identity. Place the h? tags within the p tag
causes style error on both firefox and IE. So, anyone should do it reserved, instead, place the p
tag with any h? tags will do the jobs on both browsers. Still learning it coz it much varies when
doing styles. Tested it on XHTML 1.0 Strict....
Yaml - (x)html/css Framework
(2) The YAML (Yet Another Multicolumn Layout) Framework is an excellent open source project that helps
you to create two or three columns (X)HTML/CSS floated layouts. This framework is very easy to use
and allows you to modifiy it to your own needs, this framework offers some tools for rapid
development of modern and accessible CSS layouts. QUOTE Yet Another Multicolumn Layout (YAML)
is an (X)HTML/CSS framework for creating modern and flexible floated layouts. The structure is
extremely versatile in its programming and absolutely accessible for end users. Based on w....
Sitepoint's Css And Html Reference Sites
(2) Recently the folks at SitePoint.com launched two excelent online reference sites for web designers
and developers, the first one is the SitePoint CSS Reference and the second one is the SitePoint
HTML Reference (Beta) . Both of them are free and available to anyone and everyone who needs to
lookup any information related to CSS and HTML in an easy and fast way. The SitePoint HTML
Reference (Beta) is still in progress. Also, both of them are very detailed and up-to-date on each
subject and are focused not only to beginners because they covers from general to advance....
Html Emails How?
(12) How on earth do you create HTML emails? I have been searching Google for some time now and can find
ABSOLUTELY no information what so ever on how to ACTUALLY create HTML content emails. It just a
bunch of programs and Microsoft applications, or testing facilities, I don't need any of this,
there must be some coding system to it? I tried emailing using basic direct HTML tags (like ), but
it fails (it just shows ), so how can I do this? I am not looking for anything really fancy, I
just want to use some basic bolding and font changes and things to make it look a ....
Html Table Issue.
(18) Does anyone know how I might create a HTML table but using pure CSS (div's and what not). I
really have no idea why, but for some odd reason my layout goes nuts if I try to use the table tags,
even used properly with no errors the whole thing just brakes down (I don't use tables
anywhere). So I figured my only option is to attempt to do it CSS way if possible?....
About Html
(15) How long did it take you to learn Html?? It took me about 2months to learn the basics lmao. I need
a tuturial that has it all or a website.i would like it if someone did it. Thats why i get my
friends to help me /biggrin.gif" style="vertical-align:middle" emoid=":D" border="0"
alt="biggrin.gif" /> But they are nice friends thats why. Like 2 people have helped me Sten and
Habble Sten Owns www.habbofront.com which uses Asta as its host and www.habble-aus.com which uses
Asta as its host. so this must be a good host because 2 good sites that have expert Htmlers so need
he....
Html Stats
(3) Do you know how to get website stats in a html code?? Like The amount of people viewing the site at
the moment and stuff like that?? because i need to know. Thanks if you reply to this i am in need
for it. /tongue.gif" style="vertical-align:middle" emoid=":P" border="0" alt="tongue.gif" />....
Stretching My Site Vertically
Using CSS or HTML (6) I know it's possible, I've seen it one time. But I forgot. Many websites, if they hold more
content than there is room for in the minimum height, the site stretches vertically. How can I do
this? I only know that I need a background image of 1px height. Thanks in advance MediYama....
Scripts And Html
(13) Hey /smile.gif" style="vertical-align:middle" emoid=":)" border="0" alt="smile.gif" />, In the
note pad, I put the proper code for php ?> and save the file as name.php But i can't put
that file in html. This is a big problem since Iam trying to make an online text based game. Whats
the code to put a script inside a web page. And do i need any special software for it? If so
where can i download it? Thanks for reading /biggrin.gif" style="vertical-align:middle" emoid=":D"
border="0" alt="biggrin.gif" />.....
Firefox Inventing Its Own Html?
(9) I am building a website for a client. I finally have the animations and the site content the way i
want it. I updated the site via FTP, and IE displays it perfectly. Firefox however displays my "work
in progress" animations still, even though the index file references the new animation. I have
cleared cache, and even looked up the site on different computers, and on every one, FF displays
those darn rough draft animations while IE works perfectly. Any idea as to what is going on here?....
Bulletproof HTML: 37 Steps To Perfect Markup
Excellent article that highlights and answers most FAQ about HTML (4) Hi, i want to share with everybody this excellent article at sitepoint.com that i just read, it
highlights and answers most FAQ about HTML, it's very consice and simply and for me it is a must
to read. You can read it at Bulletproof HTML: 37 Steps to Perfect Markup . Best regards,....
Home Videos
html code for home video (4) I was wondering if anyone knows how to turn a home video that is saved on your computer to that of a
html code so I can put it onto my myspace page... Please if anyone at all knows how to do this
please please help me!!!!....
A First Peep Into Html
(5) Dear friends HTML is the building block of any web page. Without it no pages can be written though
there are some exceptions. Even you got to have some knowledge of HTML to write dynamic web
applications. An HTML file is a text file containing small markup tags The markup tags tell the Web
browser how to display the page An HTML file must have an htm or html file extension An HTML file
can be created using a simple text editor HTML is acronym of Hyper Text Markup Language. This time
I will discuss about HTML tags. Dear friends HTML is the building block of any web pa....
Where To Find A WML To HTML Converter ?
(2) hello people, i need to convert few wml codings to html.. I have found plenty of converter that
convert html to wap. But none of my use.. Please guide me.. Thanks in advance....
HTML: Seems Like A Simple Problem, But I'm Baffled!
(4) i got this one question...I have this page http://ebiztip.com/thankyou.html with an image of the
book not coming out.....the image is named chapterm-big.jpg...but the image just want to hide....i
swear there's nothing wrong with the html....or am I wrong???....
Really Helpful Tips In Designing
Tips for both webmasters and designers (4) I am not going to have internet connect for a week or two, /dry.gif" style="vertical-align:middle"
emoid=" so just to keep my account active and running here is some really useful stuff I though
you might be interested in! Its basically about some webmaster/designer tips. Keep these in mind
when ever you are designing your site. It will prove very effective. This is through my personal
advice. Content deleted, plagerised from
http://www.zabswebdesignz.com/html/html/we...gning_tips.html Thats it guys, finsihed. Hope these
dum tips /blink.gif" style="vertical....
Need Help With The HTML HR Tag
(5) Hi, does anybody knows which is the equivalent tag in CSS of the HTML HR tag or how do i replace
this. I need this because the HR tag is deprecated and i wanna validate a website. The code that i
need to replace is this: QUOTE best regards,....
HTML Editor
(23) I am sick of using notepad to create my HTML pages and I want somthing better. Are there any
programs available that are easier to use than notepad for html editing. If so i wolud like to know
about them. Thanx....
How Can You Spice Up Your Basic HTML Site ? Beginner Needs Help
(9) Well im new to this,and i know a person who knows how to do HTML,I of course dont lol,but I was
wondering with html can you change the way the sites you make on here look and ect..(put flash in
and w/e..)....
Get Input From Html/txt File?
with just html/css and maybe javascript? (2) I was just wondering if it's possible to retrieve text (and maybe images) from a .html or .txt
file. So for example you get the header and footer from an external file. Is it possible with just
html/css and maybe a little javascript or does it require server side scripting like php???
-=jeroen=-....
Here Are Some Html Tutorial Sites
(1) I think here is a very good HTML Tutorial : Rolling Eyes
http://www.allfreetutorials.com/htmltutorials.htm Also very competent : Rolling Eyes
http://www.yourhtmlsource.com/ Adequate one : Rolling Eyes http://htmldog.com/ Take a look and
you'll get all answers about HTML, CSS and Java-scripting. Laughing....
Where Can I Learn Html Codes ?
html codes (8) does anyone know a good website with html codes?....
Web Design Tips: Add Your Own Cursor
(4) The code that we will be using will work with Internet Explorer 6.0+. You can use your own cursor
images -- just upload them to a website. Cursor images are special images with a .cur or a .ani file
extension. body, a {cursor: url(http://www.youraddress.com/cursor.cur);} Replace
youraddress.com/cursor.cur with the address of your custom cursor and then save your changes.
That's it!....
Where Can I Learn Advanced Html ?
(11) Well over a few years ive been picking up little bits of html and have slowly learnt quite a bit (to
my own surprise) But im still quite new and havnt found any sites that help much with advanced
html! /sad.gif' border='0' style='vertical-align:middle' alt='sad.gif' /> If anyone knows
of sites that show mainly advanced html and maybe even a bit of java could they plaese post it im
desperate CHEERS!! /biggrin.gif' border='0' style='vertical-align:middle'
alt='biggrin.gif' /> ....
Free Shoutbox? HTML, Flash or PHP Code
(24) does anyone know where i can find a free shoubox thats customisable? it can be in html, php or flash
format. thanks in advance paul....
Force Object To Load Last
html question (2) Alright html wizards...i've got a question ^_^ I assume that, like other programming codes, html
and php compilers read a code from top to bottom. Say I have a object though...and I want it to load
last...how do I do that? Let's just pretend I have an image that I do not want to load until
everything else on the webpage is loaded...how can I set that up? Is there perhaps a javascript code
for it...or maybe a CSS style I could add onto the object? Or better yet, is it possible to make
everything within a div/span/table tag load last? Another thing...if I leave an....
Embedding XML into HTML
(2) Hi, I am looking for a way to embed external rss/xml files into my html page, how/is this possible?....
Basic Tips and Tricks in HTML
(15) Here is some quick links for basic html coding... A quick and easy way to create your first web
page! -> The easiest HTML guide for beginners You'll learn how to create tables from real
examples. -> How to create TABLE? You will learn how to create frames from a real example.
You'll see how to create a borderless frame, how to specify the target frame, etc. -> How to
build FRAMES? Follow a few easy steps to add sound to your web pages. -> How to add sound to a
web page? This page tells you how to automatically load a visitor to another web p....
Looking for quick, tips, html, css
|
*RANDOM STUFF*
*SIMILAR VIDEOS*
Searching Video's for quick, tips, html, css
|
advertisement
|
|