Can't validate this line, why?

<table width="100%" border="0" cellpadding="2" cellspacing="3" id="contact">
The mentioned element is not allowed to appear in the context in which you've placed it; the other mentioned elements are the only ones that are both allowed there and can contain the element mentioned. This might mean that you need a containing element, or possibly that you've forgotten to close a previous element.
The page in question is here:
http://www.wokingaerials.co.uk/contact.html
And I was using this site to validate the pages:
http://validator.w3.org/

Thanks Nadia, lucky we didn't bet with money, I would have lost.
I removed the <h2> tag and it validates now.

Similar Messages

  • Can i use this line in JNLP file?

    Can i use the below line in JNLP file?
    <property name="ondc.root" value="@user.dir"/>
    I want to get the client side location of a JAR file. How can i get it?
    plz help
    Thanks,
    Deepak

    I Think u can not use this line
    as i have studied jnlp file syntax thoruoghly and did not found any thing like this
    would u plz telll me what u want to aceive so that i can suggest u any solution.
    Regards
    M Fazal Ur Rehman(Pakistan)

  • I have a 2006 imac i just brought back from the dead when i try to install snow leopard it says i can't on this computer why not

    i have a 2006 imac i just brought back from the dead when i try to install snow leopard it says i can't on this computer why not

    There is your problem. DVDs that ship with a Mac are machine specific. You will need to purchase a retail copy of the DVD $29.
    Stedman

  • Samsung is calling Italian enterprises offering an Ipad Samsung Galaxy Tab 10.1. Can they do this? Why are they callin their product Ipad when they cannot? Is it legal?

    Samsung is calling Italian enterprises offering an Ipad Samsung Galaxy Tab 10.1. Can they do this? Why are they callin their product Ipad when they cannot? Is it legal?

    If they're actually calling it an "iPad" then no, it's not legal since "iPad" is a trademark (though who owns the trademark is currently in dispute). You can notify Apple's legal department here:
    http://www.apple.com/legal/contact/
    Regards.

  • How can I fix this line please

    Hello Everyone,
    I have in a form the following line
    <*font size="1" face="Verdana, Arial, Helvetica, sans-serif"> Champs obligatoires </td><td align="right"></td></tr>
    </table></td></tr></table></form>
    When I hit apply the words champs and obligatoires break on two different lines. There is space for them to be displayed next to each other.
    I cannot see how to fix it. Would someone be kind enough to tell me what I am missing?
    Thank you in advance
    Mireille
    Message was edited by: Mireille Green1
    Message was edited by: Mireille Green1

    Old toad,
    thank you for your help.
    The whole form is a subscription form and it is quite long that is why I did not put it all here. This is the end of the form and while the word was in English it worked fine I translate it but it takes 2 words instead of one and they split.
    There is no asterisk in the code I just put it there so I could display the code it kept changing on me while posting.
    Here is the last lines
    *value="Effacer" /> </td></tr>
    <tr><td>** Champs obligatoires <*/font></td><td align="right"></td></tr>
    </table></td></tr></table></form>
    <!-- End myContactForm.com Form HTML -->
    ignore all asterisks.
    If you want to see the form in its entirety it is here
    http://www.clubiweb.com/ci/Abonnement.html
    Thanks again
    Mireille

  • I can't Install this mavericks why?

    please help me

    Do you get a message that "Mavericks cannot be installed on this computer"? If so, then your hardware is too old, which means it also can't run Mountain Lion.
    To determine exactly what kind of Mac you have, go to the Apple at the top left. Click that, hold down the Option key and choose System Information.
    The very first thing shown in the larger right hand pane is the system overview. Copy/paste only the first four lines into a reply here. Like this:
    Model Name:          Mac Pro
    Model Identifier:          MacPro5,1
    Processor Name:          6-Core Intel Xeon
    Processor Speed:          3.33 GHz

  • How can I turn this line and its intersection into a separate object?

    My initial object is #1, then I draw a line on #2.
    How can I turn the highlighted area into a separate object? (I cheated and filled this area with Photoshop, but I'd like to know how to turn this red area into a separate object so that I can fill it with Illustrator)
    Thanks in advance

    Alex,
    Or you may just Pathfinder>Divide and Ungroup.

  • Can you validate this on Linux

    Hi Folks:
    Although Sun has marked this bug as "Can Not Duplicate" I have this issue on every Linux box I have.
    Using Mandrake 7.1, 8.0, or 8.1 and JDK 1.3.1 when I capture a button 1 mouse click my mouse event modifiers are always BUTTON1_MASK + BUTTON3_MASK
    BUTTON1_MASK has a value of 16
    BUTTON2_MASK has a value of 4
    So when I click the main mouse button my mouse event modifiers are coming back with a value of 20. This causes pop up windows to pop up on every mouse click regardless if it's a right or left click.
    The following code is the minimal set of code that demonstrates this effect:
    import java.awt.event.*;
    import java.awt.*;
    import javax.swing.*;
    public class MouseTest extends JPanel
        private JTextArea ta;
        public static void main(String[] args)
            JFrame myFrame = new JFrame();
            MouseTest myPanel = new MouseTest();
            myFrame.getContentPane().add(myPanel);
            myFrame.setSize(300,200);
            Toolkit toolkit = myFrame.getToolkit();
            Dimension screensize = toolkit.getScreenSize();
            Dimension frameSize = myFrame.getSize();
            int newX = (int)((screensize.width/2) - (frameSize.width/2));
            int newY = (int)((screensize.height/2) - (frameSize.height/2));
            myFrame.setLocation(newX, newY);
            myFrame.setVisible(true);
            myFrame.addWindowListener(new WindowAdapter() {
                public void windowClosing(WindowEvent e){
                    System.exit(0);
        public MouseTest(){
            buildUI();
            buildListeners();
        private void buildUI(){
            this.setLayout(new GridLayout(1,1));
            ta = new JTextArea();
            add(ta);
        private void buildListeners(){
            ta.addMouseListener(new MouseAdapter(){
                public void mouseClicked(MouseEvent e){
                    ta.append("Mouse Event Mods is : " + e.getModifiers() + "\n");
    }If you do a left click (the main mouse button) on the JTextArea in Linux and see that the mouse event mods = 20 could you come back to this thread and let me know:
    1. What version of Linux?
    2. Which mouse driver?
    3. What physical mouse (brand and model if you have it) you're using?
    4. Which JDK you're using?
    This will help me give Sun a better sample group of what systems show this issue. As we all know, when fixing a bug more information is better.
    Thank you very much for any assistence you can give..

    Looks as if it is working fine (well, almost) I changed one of your lines to
    ta.append("Mouse Event Mods is : " + e.getModifiers() + "p=" +e.isPopupTrigger()+" \n");Mouse Event Mods is : 16p=false
    Mouse Event Mods is : 8p=false
    Mouse Event Mods is : 4p=false
    Mouse Event Mods is : 17p=false
    Mouse Event Mods is : 9p=false
    Mouse Event Mods is : 5p=false
    Mouse Event Mods is : 18p=false
    Mouse Event Mods is : 10p=false
    Mouse Event Mods is : 6p=false
    here is my sequence:
    LMB
    MMB
    RMB
    Shift + LMB
    Shift + MMB
    Shift + RMB
    CTRL+LMB
    CTRL+MMB
    CTRL+RMB
    and the mouse event is never a popuptrigger
    I am using SuSE7.1 Genius Optical NetScroll Mouse (PS2), JDK1.3.1

  • On my start page a line of data, e.g., "Most Visited" - "Getting Started," 'Latest Headlines," appears between the data line containing the URL and the tab line; how can I clear this line?

    This is about as specific as I can get.

    That will be the bookmarks toolbar. To hide it, in the View menu select Toolbars, then click on the "Bookmarks Toolbar" entry to de-select it.
    You can also control-click on a toolbar and click on eh "Bookmarks toolbar" entry.

  • Every time I visit CNN I get a message saying that Firefox prevented the page from automatically reloading. I want to allow this. How can I do this? Why does Firefox make this so difficult? It's just a news site...

    I want to allow CNN.com and other news and weather pages as well as blogs to automatically reload. I cannot figure out how to do so. Every other browser I've ever used has a way of allowing certain "trusted" sites to reload. All I get is an icon that says "Allow" but when I click on it the message instantly reappears and the only way to get rid of it is to "X" out of it which defeats the purpose completely.

    That shouldn't block refreshes.<br />
    If that happens then check your extensions (Tools > Add-ons > Extensions)
    See:
    * https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • Can anyone tell this newbie why she can't watch the TV shows or movie on...

    www.surfthechannel.com on her iPod Touch? Nothing ever loads. Any ideas? Thx.
    Message was edited by: Bugsylover

    If it requires Flash, it won't work on the Touch.
    And, it looks as if it's a (possibly illegal) filesharing site.

  • Unable to validate Invoice Lines

    Hi,
    I have an invoice and it has 5 lines .This particular invoice has been accounted and later i have added 5 more lines to the same invoice
    by mistake i have cancelled the entire invoice with out validating the newly added 5 lines.
    My issue is every month end the invoice is showing up in "Unaccounted report"out put,exception as 'Needs Revalidation'
    How can i validate these lines
    Thanks

    Hi,
    Thanks for you reply.
    The invoice has no Holds on it. it has been cancelled with 5 accounted lines and 5 invalid lines.I jut want to validate those invalid 5 lines that's it.
    so that this invoice will not come in "unaccounted report"
    Thanks

  • Adobe can not validate the serial number for CS6 Design Standard. What goes wrong?

    After purchasing and downloading and installing the CS6 Design Standard package serial number is requested,. After completing the SN (as sent) I get the following message: "We can not validate this serial CS6 Design Standard". What am I doing wrong

    That entries are blocking the product to reach Adobe servers.
    Move your hosts file to desktop and open it from there.
    Then remove entries like " 127.0.0.1 lm.licenses.adobe.com " ( There should not be any Adobe related entries )
    Once you have removed, close hosts window.
    The drag the file back to etc folder and replace it with original hosts file.. ( open hosts once again and confirm there are no adobe entries.
    Then try.

  • Where can we validate the MANDT field in a database table.

    Hi All,
    In any database table we will be having MANDT field.  In the program while populating the table we never populate the field MANDT. But still in the database table, it automatically takes the current clinet number.
    Could any body tell me where can we validate this.  I have a requirement in my program, in which I need to populate one of the field with one constant value.
    Thanks,
    srinivas.

    hi table T000 is for the  Clients master table ....
    the client is the special field for all the master tables...
    for validating the field you need to do like this..
    data: v_mandt type sy-mandt .
    tables:t000.
    select-options:s_mandt for t000-mandt.
    select mandt
             from t000
             into v_mandt
              where mandt in s_mandt.

  • How can I validate my warranty with a refurbished iphone?

    On August 28th I visited Miami and I went to the Apple Store to replace my Iphone 4 broken out of warranty with a Refurbished Iphone.
    The problem is that the refurbished Iphone replacement never worked! I tried to verify my coverage status but it is out of warranty. I know that there are 90 days of warranty. However, how can I validate this warranty because the IMEI is not accepted to chat or contact Apple Support? Somebody can help me?
    Thank you

    SILsam wrote:
    I've already checked it, however the device does not have coverage. It was a refurbished iphone 4 and theoretically it has 90 days of warranty.
    According to your original post, your limited warranty is scheduled to expire on November 28th.  That service replacement warranty was never intended to include live support via chat or phone conversations with an AppleCare advisor.

Maybe you are looking for

  • Sony Bridge for Mac doesn't work with my Sony Xperia J

    I have installed Sony Bridge for Mac version 3.7.1, but it won't connect to my Sony Xperia J which I have only had for 3 months. I get the error "Could not connect to your Xperia device. Please disconnect and reconnect it again. Restart the device if

  • External speaker sound jack not working?

    Altec Lansing VS2421. Not a bad little 2:1 speaker set up for the money. They work fine on my G5 Quad, but not on the iMac. I get that 'interference noise' when I plug the speaker connector into the sound jack. But no music, nada, niet, zilch, non. T

  • MacBook Pro and FCP 4.0

    I got new MacBook Pro few days ago. I asked technician about possible working for FCP with Macbook. He said yes. I installed FCP 4.0 to MacBook pro and it does not work. Configuration error: missing AGP graphics card. What do I need? New FCP verison

  • I have 10.5.8 and want to update to 10.9.3

    how can i update from 10.5.8 to 10.9.3? please can someone help me please thank you so much  .

  • Dinamic select list !

    Hi, I have the costum to creat static select list, but now i have creat a report based in lines template, with 5 coluns: NAME-----DATE------TEXT-------ID---------STATUS The status can be : FREE, OPEN or CLOSED I need to creat a select with the status