Xhtml Software - ?To use quotes or not?

Pages: 1, 2
free web hosting

Read Latest Entries..: (Post #15) by Mich on Jan 13 2006, 04:49 PM. (Line Breaks Removed)
QUOTE(Tyssen @ Jan 11 2006, 07:00 AM)Well, no, actually it is. I can't see your graphics and I've looked on two different PCs with different firewall configurations. And when I paste the URL of one of your graphics into my browser I get a 404 - which means it doesn't exist on your server at that location. I'm sorry if you think I'm 'raining on your parade' but you&... read more.
Read the FIRST post of this Topic. - Express your Opinion! Contribute Knowledge :-).

Free Web Hosting, No Ads > CONTRIBUTE > Computers > Software

Xhtml Software - ?To use quotes or not?

Mich
I have gone over to W3C and W3 School to try to bring myself up to date on XHTML. When I use their on site validator, it just doesn't like all the quotation marks in the body of my work. sad.gif I get a tremendous amount of errors all pointing at quotation marks in the body. I get the impression that using them is passe'. Is this true? wub.gif Could somebody please tell me where I can get a HTML software that either doesn't use quotation marks, or has an option to not use them? I am currently using Cute HTML LE and cannot find an option to not use the quotes.

Reply

Tyssen
Are you talking about " or &quot; ? Are the quote marks in your actual content (e.g. "he said blah") or are they used in your tags (e.g. <input type="text" ... )?

Reply

jlhaslip
Maybe post a bit of the xhtml code and the w3c validator message that applies? Or post the URL for us to view the source?

Reply

Mich
QUOTE(Tyssen @ Jan 9 2006, 08:41 PM)
Are you talking about " or &quot; ? Are the quote marks in your actual content (e.g. "he said blah") or are they used in your tags (e.g. <input type="text" ... )?
*



Never mind. It is lack of them that it is complaining about. It also seems that I have attributes in my HTML, that XHTML wants put in a ccs file. I run my stuff through CSE HTML Validator and it comes up clean. Their validator is really strict.

Error Line 13 column 27: an attribute value must be a literal unless it contains only name characters.
<BODY text="#d1a9d5" vLink=#808080 alink="#d1a9d5" link="#d1a9d5" bgColor="#0129" background="gardenia/gardenia_maincolor.jpg">
You have used a character that is not considered a "name character" in an attribute value. Which characters are considered "name characters" varies between the different document types, but a good rule of thumb is that unless the value contains only lower or upper case letters in the range a-z you must put quotation marks around the value. In fact, unless you have extreme file size requirements it is a very very good idea to always put quote marks around your attribute values. It is never wrong to do so, and very often it is absolutely necessary. (IT IS REFERING TO #808080 WHICH IS NOT IN QUOTES)



BUT I DON'T UNDERSTAND THIS ONE! Since when can't you put background in a table?
Error Line 17 column 77: there is no attribute "BACKGROUND".
<table cellspacing=0 cellpadding=1 width="100%" bgcolor="#D3C177" background="gardenia/gardenia_goldstrip.jpg" border=0>


go to W3C

click on the HTML Validator in left column under W3C AtoZ

Put your url in the appropriate box and see what you get. It is really scary.

 

 

 


Reply

Tyssen
If you're designing in XTHML with a strict doctype, you can't have any background information in your HTML. You have to assign a class or ID to the table or cell instead and then put the background info in your CSS. It's not that scary really. Instead of

CODE
<table cellspacing=0 cellpadding=1 width="100%" bgcolor="#D3C177" background="gardenia/gardenia_goldstrip.jpg" border=0>

you'd do this:

CODE
<table id="whatever">

/* CSS */
table#whatever {
width: 100%;
background: #D3C177" url(gardenia/gardenia_goldstrip.jpg) no-repeat;
border: none;
border-collapse: collapse;
}

table#whatever td { padding: 1px; }

Reply

jlhaslip
Must be something else happening there, because the w3schools has a sample here using a jpg as a background in xhtml.
What Doc type are you using, Mich?

Reply

Mich
QUOTE(jlhaslip @ Jan 9 2006, 10:29 PM)
Must be something else happening there, because the w3schools has a sample here using a jpg as a background in xhtml.
What Doc type are you using, Mich?
*

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
BUT when I use the validator it says
This page is not Valid HTML 4.0 Transitional!
I am validating www.websetsbydonna.com/index.html

Reply

Tyssen
QUOTE(Mich @ Jan 10 2006, 06:04 PM)
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
BUT when I use the validator it says
This page is not Valid HTML 4.0 Transitional!
I am validating www.websetsbydonna.com/index.html


Well, if having your page validate is important to you, you're gonna have to address the errors.
By the way, just a comment about this:

QUOTE
If you are behind a "FIREWALL" and the graphics are not showing, you may have to adjust your settings or take it down to view this site.

Who do you think is going to go to the trouble of turning their firewall off just to see graphics on your site? Why can't you get your graphics to view properly despite firewall settings? No-one else seems to have any trouble.

Reply

Mich
QUOTE(Tyssen @ Jan 10 2006, 05:46 AM)
By the way, just a comment about this:
Who do you think is going to go to the trouble of turning their firewall off just to see graphics on your site? Why can't you get your graphics to view properly despite firewall settings? No-one else seems to have any trouble.
*

I have no idea why, but when I tried to pull up my site at a library in DeSmet, South Dakota, USA, last spring, the pages came up without the graphics on one of their puters, but when I tried another, everything was up fine. The librarian said they had a special Fire Wall on the first puter because that was the one they let young children use. So I assumed that was the problem and warned against it. It certainly isn't the fault of my graphics, if that is what you are implying. How could you possibly know that "no-one else" has any trouble? Hey, I am learning a lot from exchanges on this forum, perhaps you have another suggestion as to what the problem was. I am self taught and doing the best I can. I have a lot to learn about all this technology, but I am trying my best. Please don't rain on my parade. blink.gif Thanks for the example of the css file. I guess I need to purchase a new web designing book, the one I have addresses css, but not xhtml.

Reply

jlhaslip
That Library computer may have been firewalled, but I think probably they had images controlled on it to avoid 'Adult' material from coming through.
In Browsers, there are privacy and security settings which stop various features on the machine.
In a public setting, or if childen are using the computer, it might be a good thing.

On a Mac using IE5, select edit > preferences > security zones or ratings.
On a Windows 98se O/S using IE, select tools > internet options > security or content.
On Mozilla Browsers, edit > preferences > privacy&security > images

Where those settings are in the various browser, who knows?

Reply

Latest Entries

Mich
QUOTE(Tyssen @ Jan 11 2006, 07:00 AM)
Well, no, actually it is. I can't see your graphics and I've looked on two different PCs with different firewall configurations. And when I paste the URL of one of your graphics into my browser I get a 404 - which means it doesn't exist on your server at that location.
I'm sorry if you think I'm 'raining on your parade' but you've got errors on your site that need addressing.
*




Tyssen
I made an adjustment in my cpanel. Try my site again and see if the graphics are coming up for you now. Others have checked it out and they can see everything fine. I don't seem to have a clue as to why they aren't coming through for you.
Web Sets by Donna

THANKS!





Reply

Mich
QUOTE(jlhaslip @ Jan 11 2006, 11:50 PM)
By the way, did you solve the table background issue?
*


Well, I took the table out and used the background to tile the image instead. It still doesn't meet the standards at the W3C site, but I run it through a validator of my own and it passes just fine. W3C now says I can't have a background image statement in my Body content. Go figure. W3C wants everything in a css file instead in the html itself. Haven't learned that much about css yet so guess I will just be behind times until I can learn it. tongue.gif

Reply

jlhaslip
Hmmm... this is getting more and more curious, because I migrated all over the "Web Designs by Donna" site and could't find a '404' anywhere. Even downloaded a set to have a look, but didn't raise any 404's.
One page had a big hole in it where the background colouring was absent, but a refresh brought it back, no troubles. My browser is old and tired, so it is just as likely that the flaw was at my end. It doesn't happen often, but it has happened before.

By the way, did you solve the table background issue?

Reply

Mich
QUOTE(Tyssen @ Jan 11 2006, 07:00 AM)
Well, no, actually it is. I can't see your graphics and I've looked on two different PCs with different firewall configurations. And when I paste the URL of one of your graphics into my browser I get a 404 - which means it doesn't exist on your server at that location.
I'm sorry if you think I'm 'raining on your parade' but you've got errors on your site that need addressing.
*


Hmmm, I don't know what to tell you. I have a friend in southern Arabia that also cannot get my graphics to show. Exactly what does the 404 say? When I try the same thing I get a 404 that says I don't have permission to access the graphic. Let me check with somebody on here and see if I need to do something in my cpanel to solve the problem. You might also check jlhaslip's last post just above. Perhaps something in the browser is causing it.

Reply

Tyssen
QUOTE(Mich @ Jan 11 2006, 03:07 PM)
So I assumed that was the problem and warned against it.  It certainly isn't the fault of my graphics, if that is what you are implying.

Well, no, actually it is. I can't see your graphics and I've looked on two different PCs with different firewall configurations. And when I paste the URL of one of your graphics into my browser I get a 404 - which means it doesn't exist on your server at that location.
I'm sorry if you think I'm 'raining on your parade' but you've got errors on your site that need addressing.

Reply



Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

(Maximum characters: 10,000)
You have characters left.
Confirm Code:

Pages: 1, 2
Similar Topics

Keywords : xhtml, software, quotes

  1. I Cant Believe This Is The Best Software 2008
    is this real ? (2)
  2. Recommended P2p Software
    Recommend you P2P client (3)
    What I've been using a lot time since now, is Limewire, I think this P2P software is good for
    two things: simplicity and speed.


    Its interface is very complex but at the same time very easy to use it. You can search
    simultaneously, you can specify what type of file are you looking at, and final....
  3. Html, Xhtml, And Css, Sixth Edition (visual Quickstart Guide) Review
    (0)
    HTML, XHTML & CSS then this book is a must as this book will teach you how to build basic websites
    and learn what each tag does and how and where to use it. When you finish this book you will have
    saved yourself a whole bunch of time trying to learn from tutorials and other websites as you will
    be able to build a fully functional website in no time. Also what is best with this book as it
    comes with a companion website in which you can download all the mini tutorials that this book as to
    offer so you can see what their examples look like and learn from how the coding is....
  4. Portable Software
    portable software for your ipod or similar removeable drive (0)
    if your one of those people like me who work on different computers everyday (be it school, work,
    home, library, etc.), then you should be entrigued by the variety of software available for
    installation and execution off of a removeable or portable drive at portable apps's website
    (just google it). everythings free, and it is all portalbe, very useful software, even not so
    useful stuff (but who doesnt like to screw around everyonce in a while on a computer with cool
    programs?!?). its very cool, you start off with a "start menu" for your flash--- you just let
    yo....
  5. Software To Take Out Singing In Songs?
    I know its sorta far fetched xD (5)
    I know it's very unlikely, as it's probably kinda hard for a program to pin point voice in a
    song and get rid of it...but is there software to do such a thing? The only way I know to do it is
    to get a Guitar Pro version of the song...but it usually doesn't sound anything like it then
    /laugh.gif" style="vertical-align:middle" emoid=":lol:" border="0" alt="laugh.gif" /> Any
    suggestions?....
  6. Lan Surfer In Linux
    GUI software to view other's shared files (2)
    I have been using LAN surfer and Network scanner in Windows , These software's are used
    to scan the LAN over a given range of IP addresses and then display the folders shared by each
    computer available on LAN in the specified range... now i have switched to Linux... Can you tell me
    any GUI software which would do this task in Linux ubuntu 7.04. I tried nmap but i did not
    find it that useful...i think it does only port scanning and stuff but does not display the files
    shared... but i am not sure..tell me if it can be used and how... I also installed s....
  7. [ask] Making Video When We Use An Application In Our Computer?
    asking the best software to make this.. (5)
    i have a question, would somebody tell me the software (if there any) of making video when we use
    some applications in our computer, it's like a tutorial video, if you answer it using the video
    camera it was a bad job, but i think it uses a software/an application which records our activity
    when we use our computer.. hmmm.. sorry guys if i seem so idiot, but i need an answer... thanks
    before.....
  8. Open Program Copyrights For Third World Nations
    By making software free many can become employed (7)
    I propose the idea that giving free premium software to those who could never afford a purchase can
    only help the owners of that software. Some say that if a sale was never going to happen it
    can't be a lost sale. I agree. If people can get started learning to use programs they could
    never buy, they may develop skills and abilities that would enable future revenue and loyalty. At
    the same, time a third world nation can have more development as skilled and trained professionals
    grow. Another important issue would be addressed as well. Piracy. By lifting the copyrig....
  9. Can't Login To Any Software On My Site
    anyone know how to fix? (3)
    In a subdomain of my site I have an installation of MediaWiki, and until now it's been working
    fine. But today I've been having trouble with it. Previously, whenever I logged into MediaWiki
    it worked first time and I would stay logged in for about an hour, even without the "Remember Me"
    option checked. But I tried logging in now, and after logging me in, the next page I went to showed
    me as "not logged in". I cleared the cache as I know this has been a problem before, and then tried
    logging in again, but it still said I was not logged in! So I tried one more ....
  10. Best Software And Explorer
    What do you think is the most useful software (4)
    What do you think the most useful software out. For me its Aim, xfire, or Notepad. Most people
    won't understand notepad but watever. For my favorite Explorer is Firefox. I never upgraded to
    3.0 but who cares talk people!....
  11. Beautiful Software
    Software with great interfaces (4)
    I really like using software that have very good user interfaces. Most mac softwares are really
    good-looking (Adium, DeliciousLibrary) but most Windows applications are just plain ugly. I was
    wondering if you guys to point out some "beautiful" software. To start off I'll mention some.
    1. MediaMan (clone of DeliciousLibrary) 2. ReadAir - Google Reader for your desktop (built on Adobe
    AIR) 3. Snacker - Another AIR RSS Reader 4. Kaspersky - The new 2009 version have a decent UI 5.
    PowerArchiver - For opening zip/rar/7z files + many others others wud include Windows Vi....
  12. Amazing Software
    I found this amazing software, if you work with flash.. (0)
    If you work with flash, this is the coolest software i seen.. You can make amazing things for the
    desktop.. check it out.. www.swfmagician.com ....
  13. Free Software For File Recovery
    RECUVA (4)
    Hi all, I was loking for a software to recover my lost files and I found this /biggrin.gif"
    style="vertical-align:middle" emoid=":D" border="0" alt="biggrin.gif" /> And the best part is ,
    its free Recuva - File Recovery Recuva (pronounced "recover") is a freeware Windows utility to
    restore files that have been accidentally deleted from your computer. This includes files emptied
    from the Recycle bin as well as images and other files that have been deleted by user error from
    digital camera memory cards or MP3 players. It will even bring back files that have been d....
  14. Best Video Editing Software
    (8)
    Its really distracting seeing people "create" what they think are master pieces on windows movie
    maker. Its the lamest and really requires no skill. So im gunna whack my vote on Adobe Premiere Pro
    2 and Adobe After Affects 7 combined to make the best in the video editing range. It requires stacks
    of skills, you can download plenty of add-on effects and you can futher mod it if you wish in After
    Affects. These versions are one behind in the Adobe range since Adobe released its CS3 Prefix to all
    their newly upgraded versions. The new CS3 Prefixed Premiere is now compatibl....
  15. Recomend Me Some Software, Pleaes.
    (video editing and capturing) (17)
    Hey guys, Sorry if this isn't in an appropriate section it's kinda difficult to navigate
    all the sections to find one that suits each issue, and from what I can tell there isn't a
    general " ask questions here about random stuff" section. I'm sure almost everyone here has
    been on YouTube, Google video, or a site like those that contain tutorials for photo shop,
    programing, or anything else that you can find on your computer. I was wondering if you guys knew
    what kind of software they use? I'm looking to take video of me working on my computer....
  16. Eraser - Erase Your Data Permanently! For Free
    A must have software (7)
    When you delete file and empty recycle bin (Windows), it doesn't actually gone permanently!
    Many software can be used to recover those deleted files. Now think and imagine, you've deleted
    your personal file or something then someone recover and steal it. Don't worry, Eraser will come
    in handy What does it do? It delete files permanently! Nothing and noone can recover it. You
    can make previously deleted files not recoverable too by using Erase unused disk space feature. (if
    you want to sell your harddisk, use this) How can? It uses the patterns used ....
  17. Sync Software
    Does anyone know any good synchronization software. (4)
    Hello fellow trap17 members. I have desktop PC and laptop. Did anyone of you used any
    synchronization software to synchronize some data from one computer to the other. I have them in
    network. I would prefer if it would be some free or something from Microsoft. And if anyone has any
    experience please write it ddown. Best Regards....
  18. Lightweight Free Anti Virus Software?
    (6)
    Hello, I was wondering if anybody knew of a good free lightweight antivirus program, as I just got
    an internet connection on my slower computer. The computer itself can hardly be called
    internet-ready, it's over 10 years old, but it still works fine, the problem is I'm worried
    that an antivirus program would slow it down too much. (I have Norton Antivirus and Firewall on my
    other computer, which is much faster, and it slows down the computer a lot, especially booting. I
    kinda want this computer to be usable online.) I know that there are some great programs out ....
  19. Video Editing Software
    (11)
    I am looking for a free, decent video editing software. It does not need a lot of features. But I
    would like it to have the "slicing options", so I can split/cut films. I would also like it to have
    a simple intro option, just making simple intros with text. And the last thing, this is really
    important so listen up: It must not require my computer to have sound. I messed something up, so the
    sound is not working. This is causing my Windows Movie Maker not to work - since it requires some
    stuff. I know that I should fix this, but I will be getting a new laptop in a few mon....
  20. Top 10 Most Pirated Software On A Coporate & Internet Level
    (17)
    This information is based on the Software & Information Industry Association Report for 2007 and not
    overall statistics. 2007 Software Titles Most Frequently Pirated By Companies QUOTE 1.
    Symantec Norton Anti-Virus 2. Adobe Acrobat 3. Symantec PC Anywhere 4. Adobe PhotoShop 5. Autodesk
    AutoCAD 6. Adobe DreamWeaver 7. Roxio Easy CD/DVD Creator 8. Roxio Toast Titanium 9. Ipswitch WS_FTP
    10. Nero Ultra Edition 2007 Software Titles Most Frequently Pirated on the Internet QUOTE 1.
    McAfee VirusScan 2. Symantec Norton Anti-Virus 3. McAfee Internet Security Suite....
  21. What Is The Best Software
    what is the best software to recovery the data (5)
    Hi any one can tell me what is the best software to recovery the data ....
  22. Software Opinions
    (19)
    Hello! I just bought a laptop and I am getting all my software I need for it. I can't decide
    whether to get Winamp or use Windows Media Player. Also, should I use OpenOffice or Microsoft Works.
    Also I need a good desktop recording program. So what are your opinions?....
  23. A Port Scanner
    software (9)
    I'm searching for a port scanner software so I can scan my computer and see which ports are
    open.. if anyone knows a free one please post it here and thanks in advance /smile.gif"
    style="vertical-align:middle" emoid=":)" border="0" alt="smile.gif" />....
  24. Software To Remove Voice?
    (10)
    I am looking for a free software which is able to remove a voice in a song? To just keep the tune,
    something similar to the karaoke, I do know that not many songs provide only the tune for which
    there isn't any singing. I have been searching for quite some time as well, but the programs I
    found did not do just that. I have also read about how impossible it is to achieve with the programs
    because they only filter out some frequencies and it isn't possible to filter out to the point
    that only the instrumental part of the song is heard. But nonetheless, I hope someo....
  25. Evilboard (forum Software) - Multiple Categorys - Don't Work :(
    I am creating a forum and i can't fix more then 1 category. (6)
    I am at the moment trying to program my own forum, but i need more then a single category, here is
    my source: CODE function cat () { include("functions/functions.php");
    echo '<table width="100%"  border="0" cellspacing="0">
    <tr> <td class="eb_top" colspan="3" style="border-bottom-width:
    0; height: 30px; font-size: 12px;"> <b>Forum</b></td>
    </tr>';      global $catid;   $db = new db;   $db->connec....
  26. Kelk 2000
    Arabic Calligraphy Software (3)
    For those people who are interested in Arabic & Persian Calligraphy, Kelk 2000 is here! The four
    calligraphy fonts, Naskh, Nastaliq, Thuluth and Shikasta in their current forms, have a history of
    over 700 years. During past centuries, the masters of calligraphy have perfected these fonts, and
    have created artworks that are pleasing to the eye. The rules of the combination ligatures in
    calligraphy are so complicated that it takes years of training and practice for someone to become a
    master in one of the Islamic calligraphy fonts. The famous calligraphers have a lifet....
  27. Teleportation Possible
    Software Designes, Lacking Hardware (26)
    Hello everyone, IN my college Someone came from USA, i live in India. He gave a lecture on Human
    teleportation, He said it is possible. The lecture was very interesting. He described It like, We
    can break the molecular structure or a object that may be molecular or biological. He also added
    that when teleportated the person can be sent to anyware in the universe may be mars and other
    planets. I just loved his lectures. And one main thing he said That the software for this has been
    made and is fully working, but the main problem is its hardware implementation. It is ve....
  28. Install Two Anti-virus Software In 1 System
    Is it ok? (36)
    I found out that AVG Free version isn't eliminating even trojan viruses. I only have this free
    version from protecting my system. Is it okay to install one more anti-virus software on top of this
    AVG Free version which is already installed and updated to the latest version? I have the option of
    installing Norton Anti-virus 2005. Will it cause any problem since the two softwares may use the
    same source from the computer, if I install this one? Do you recommend that I should uninstall
    first the existing software and install the new one? Will Norton Anti-virus 2005 ....
  29. What Free Software Do We Need On Our Computer?
    free software.... (27)
    i wanna know what software, that is free, we should have on our microsoft computer!! things
    like alternatives to powerpoint (openoffice) etc. post your opinions, and maybe even top 10
    lists!....
  30. Avril Lavigne quotes
    (8)
    I saw this guy posting quotes of avril lavigne's interviews in another forum. She really says a lot
    of stupid stuff... well here is one quote to start it off: QUOTE \"'Skater Boy' is one of the
    most hardest, rawest songs ever made. Alot of girls wish they could jam on the gutiar like I could,
    but they can't!\" Add some more avril lavigne quotes that u can find!....

    1. Looking for xhtml, software, quotes

Searching Video's for xhtml, software, quotes
Similar
I Cant
Believe This
Is The Best
Software
2008 - is
this real ?
Recommended
P2p Software
- Recommend
you P2P
client
Html, Xhtml,
And Css,
Sixth
Edition
(visual
Quickstart
Guide)
Review
Portable
Software -
portable
software for
your ipod or
similar
removeable
drive
Software To
Take Out
Singing In
Songs? - I
know its
sorta far
fetched xD
Lan Surfer
In Linux -
GUI software
to view
other's
shared files
[ask] Making
Video When
We Use An
Application
In Our
Computer? -
asking the
best
software to
make this..
Open Program
Copyrights
For Third
World
Nations - By
making
software
free many
can become
employed
Can't
Login To Any
Software On
My Site -
anyone know
how to fix?
Best
Software And
Explorer -
What do you
think is the
most useful
software
Beautiful
Software -
Software
with great
interfaces
Amazing
Software - I
found this
amazing
software, if
you work
with flash..
Free
Software For
File
Recovery -
RECUVA
Best Video
Editing
Software
Recomend Me
Some
Software,
Pleaes. -
(video
editing and
capturing)
Eraser -
Erase Your
Data
Permanently&
#33; For
Free - A
must have
software
Sync
Software -
Does anyone
know any
good
synchronizat
ion
software.
Lightweight
Free Anti
Virus
Software?
Video
Editing
Software
Top 10 Most
Pirated
Software On
A Coporate
&
Internet
Level
What Is The
Best
Software -
what is the
best
software to
recovery the
data
Software
Opinions
A Port
Scanner -
software
Software To
Remove
Voice?
Evilboard
(forum
Software) -
Multiple
Categorys -
Don't
Work :( - I
am creating
a forum and
i can't
fix more
then 1
category.
Kelk 2000 -
Arabic
Calligraphy
Software
Teleportatio
n Possible -
Software
Designes,
Lacking
Hardware
Install Two
Anti-virus
Software In
1 System -
Is it ok?
What Free
Software Do
We Need On
Our
Computer? -
free
software....
Avril
Lavigne
quotes
advertisement



Xhtml Software - ?To use quotes or not?



 

 

 

 

ADD REPLY / Got an Opinion! a humble request :-) RAPID SEARCH! Free Hosting [X]
Express your Opinions, Thoughts or Contribute more info. to help others.
Ask your Doubts & Queries to get answers, So that "Together We can help others!"
Register FREE for AD-FREE forum, Create your own topics, Ask Questions, track topics, setup subscriptions & notifications and Get a Free Website w/ Email and FTP.
500MB Space *No Ads*, CPanel, FTP, PHP, MySQL, EMails - 100% FREE