Invalid tag

In this file, there are 2 tables. But in dreamweaver only

1 is displayed. It is said that the second table has an error of invalid markup. Please find the error. In Notepad, if you change the second table it works fine difficult. But I (used to) prefer dreamweaver. Here's the code. Check the line #36

< HTML >
< HEAD >
the new offerings < TITLE > < /title >
< / HEAD >
< BODY >
Anchor room here
< h4 > last edited by candidate name, centre number, candidate number < / h4 >

< TABLE width = "600px" >
< b >
< TD colspan = "4" width = "75%" > < Design Hothouse h1 > < / h1 > < table >
< TD colspan = "1" rowspan = "5" > < table > Pen image
< /TR >
< b >
< TD colspan = "4" >
Office supplies < h2 > < / h2 > < BR >
< h3 > this week, we have special offers for adhesive products, files, records and materials to write.  Our stars offers can be found on the following range of products: < / h3 > < table >
< /TR >
< b >
< TD width = "22%" > < h3 adhesives > < / h3 > < table >
< TD width = "22%" > < h3 adhesives > < / h3 > < table >
< TD width = "22%" > < files h3 > < / h3 > < table >
< TD width = "22%" > < files h3 > < / h3 > < table >
< /TR >
< b >
Pat < table > < TD > image
image of < TD > < table > glue
< TD > image file < table >
< TD > image folder < table >
< /TR >
< b >
< TD colspan = "4" >
< p > click on the image above to take you to this weeks star offer.  These offer the best value for money that can be found all over the internet, local store or wholesaler. < /p >
< /TR >
< /table >
< TABLE width = "600px" >
< b >
< TD width = "33%" > < h2 > sponsored links here < / h2 >
< Table >
< TD width = "33%" >
< ul >
List of place here
< /ul >
< Table >
< TD >
< p > click here to send us an email. < /p >
< p > click here to return the top < /p >
< Table >
< / BODY >
< /table >

< / HTML >

Your code ends as


 

The location of the tag is not valid. He must come before the tag so that the tags are correctly nested. Also there is no fence.

Should be


 

as in the example of Nancy.

Tags: Dreamweaver

Similar Questions

  • What img alt tags for?

    I noticed on my site that I have many errors in the validator.

    most of these errors are for my images, the error is indicating that I have invalid tags or something.  What does that mean?

    My url is customfortunecookies.com

    Thank you

    If an image is part of the content, that is, it is not for styling purposes, alternative text should be specified as in

    alt = 'free of charge. Download free recipes, news and more. Learn more. » />

    When an image contains words that are important for the understanding of the content, the text should include those words. This will allow to play the same function on the page as the image text. Note that it does not necessarily describe the Visual characteristics of the image itself but that it has the same meaning as the image. If the text in the image is more than can fit in a short alternative text, then it should be described in the short text alternative and a longdesc predict as well with the full text.

    If the image is not part of the content, the ALT text attribute may be left blank as in

    alt=" " />

    This will stop an overzealous validation service to mark the line as invalid.

  • Select the tag


    Hello

    I'm using the tag select in my form and it assigning cfquery tag values. And I wan to the list box menu to be appeared in ten rows of the table, so I use the cfloop tag. but I get an error of cfoutput tag

    The code written is:

    < cfloop index "i" = from = "1" to "5" = >
    < cfoutput >
    < b >
    < td >
    < select name = "prod" #i # >
    < option value = "select" selected = "selected" > select a < / option >
    < cfoutput query = 'salt' >
    < option value = "#Product_id #" > #Product_name # #i # < / option >
    < / cfoutput >
    < / select >
    < table >
    < / cfoutput >
    < td > < input type = "text" name = "price #i #" readonly = "readonly" / > < table >
    < td > < input type = "text" name = "prod_qty #i #" / > < table >
    < td > < input type = "text" name = "tot #i #" readonly = "yes" onfocus = "calculate (); "/ > < table >
    < /tr >
    < / cfoutput >
    < / cfloop >


    Error is:


    That is to say
    Invalid tag nesting configuration.
    A query driven CFOUTPUT tag is nested inside a CFOUTPUT tag that has also a QUERY = attribute. This is not allowed. Nesting these tags means you want to use the group treatment. However, only the top-level tag can specify the query that animates the treatment.


    Can someone help me on this...


    Thank you and best regards,
    Ravi

    Right. I missed that. Then change the a

  • NoClassDefFoundError

    I have an application that generates correctly, but gives a NoClassDefFoundError at runtime. I use Eclipse 3.5.2 with the following Blackberry SDK plugins:

    BlackBerry Java plug-in 1.1.2.201004161203 - 16 net.rim.EclipseJDE.feature.group
    BlackBerry Java SDK 5.0.0.25 net.rim.ejde.feature.componentpack5.0.0.feature.group
    BlackBerry Java SDK 4.7.0.53 net.rim.ejde.feature.componentpack4.7.0.feature.group
    BlackBerry Java SDK 4.6.1.36 net.rim.ejde.feature.componentpack4.6.1.feature.group
    BlackBerry Java SDK 4.6.0.21 net.rim.ejde.feature.componentpack4.6.0.feature.group
    BlackBerry Java SDK 4.5.0.21 net.rim.ejde.feature.componentpack4.5.0.feature.group

    NoClassDefFoundError is usually the result of a missing JAR, but in this case, I try to instantiate a class from my application JAR. In fact, the class in question is an inner class from another class that I already instantiated. Here is a fragment of the inner class:

    public class StructArrayFirst {    // Class implementation snipped...
    
        public static class Marshaller implements Marshal {
            private final String namespace;
            private final String name;
            private SoapSerializationEnvelope envelope;
    
            public Marshaller(String namespace, String name) {
                this.namespace = namespace;
                this.name = name;
            }
    
            public Object readInstance(XmlPullParser parser, String namespace, String name, PropertyInfo expected)
                    throws IOException, XmlPullParserException {
                String exitOnTag = parser.getName();
                if (!exitOnTag.equals(name)) {
                    throw new RuntimeException("Invalid tag. Expecting " + name + " got " + exitOnTag);
                }
    
                parser.nextTag();
    
                // Comment out this line and NoClassDefFoundError goes away.
                Object instance = readReturnInstance(parser);
    
                parser.require(XmlPullParser.END_TAG, null, name);
                return instance;
            }
    
            private Object readReturnInstance(XmlPullParser parser) throws XmlPullParserException, IOException {
                // Function body snipped...
            }
    

    I have the instantiate like this:

        public Marshal getMarshaller() {
            return new StructArrayFirst.Marshaller("", mTag);
        }
    

    The code as shown gives a NoClassDefFoundError when I try to make the instantiation. If I comment out the call to readReturnInstance, the problem goes away:

                // Comment out this line and NoClassDefFoundError goes away.
                //Object instance = readReturnInstance(parser);
    

    I'm puzzled as to why the presence of this line of code would result in a NoClassDefFoundError. Perhaps miss something elsewhere. Thanks for any light you might be able to do on that.

    -rich

    Found the problem. There was a code (not shown above) that attempted to access the class of primitive types (for example, int.class). It works in some Java environments (the code in question came originally from an Android project). BlackBerry obviously can't get an object of class for primitive types, but the compiler don't is not complaint. As long as the function that contains the offending code is never called, the class can be instantiated at run time. Perhaps packer is smart enough to omit unused functions. This caused some confusion since commenting the line mentioned above does not really solve the problem, but it causes the offending function not called. Would be nice if the compiler is complaining about this.

  • Phone and Tablet Menu size questions

    Hello again!

    I have trouble to adapt to the size of the menu bar on the phone and Tablet layout of my site. The layout of the Office is good to go, but the problem here is I want to make the menu bar in the smart phone of my site layout adjusts automatically to the size of the screen while keeping the three expand button on the left and the tabs in the menu bar in the Center. I would like also for the menu to expand only when the user clicks on, and not only when the mouse pointer is placed on it.

    Apart, another issue I'm facing is the menu bar on the presentation of the Tablet, how can I do to make it develops across the screen entirely and not just after the last button in menu bar? I want the menu bar completely through the entire screen is any size of the tablet.

    As always, any help will be greatly appreciated.

    Here is a link to the site:

    http://restorationacpc.com/

    You have a large number of invalid tags in your HTML code.

    http://validator.w3.org/check?verbose=1&URI=http%3A%2f%2Frestorationacpc.com%2f

    CSS:

    / Special rules for mobile devices * /.

    @media only screen and (max-width: 480px) {}

    / * Hide menu, show the button * /.

    #menu {display: none}

    #toggleMenu {display: block}

    }

    / Special rules for tablets * /.

    @media only screen and (min-width: 481px) {}

    / * Hide menu, show the button * /.

    #menu {display: none}

    #toggleMenu {display: block}

    }

    / * Special rules that apply to workstations * /.

    @media only screen and (min-width: 768px) {}

    / * hide, button display menu * /.

    #menu {display: block}

    #toggleMenu {display: none}

    }

    HTML:

    The JQUERY CODE: insert this in theTags of your document.

  • Slide show under the menu bar, help please

    Hi again,

    I need help from members of the community awesome Adobe once again, good news, is that I actually have an example to show this time to make it easier to answer. I recently started a new page for the company I work with, and there is a change in the menu bar and a slide show I've wanted to do for a long time, maybe even the Twitter ticker bar if somebody wants to cover in this discussion.

    First of all, the link: http://restorationacpc.com/

    The menu bar, as you can see, the Red thing moving across the top of the screen with the tabs menu on it as home, about us, ect. ect. For some reason, that he travels out of the page, as I planned to do, he stops just short and you can see the background of the page to the left and to the right of the bar, which is the smallest issue that I encounter here.

    The biggest problem with the menu bar I want difficulty is that logo Showcase D & B push the slide downwards, and while that seems not necessarily bad, I would like to again for the slide show to sit under the logo with the logo shining on the top of the slide show.

    Finally, something small and optional to hit for anyone who wants to solve, y at - there a way for me to have the Ticker Twitter bar to the top at the top of the site to sit ON top of the logo d & b and against the Red menu bar? I would like for the Twitter's Ticker bar to look like it is part of the bar menu if possible.

    As always, any help is greatly appreciated!

    For the slide show to push up:

    . scmenu in your CSS (line 102) file:

    Add:

    position: relative;

    I see that you already have z-index. But z-index will not work without reference to a position.

    . displaywrap (line 53 of your CSS):

    Add:

    position: relative;

    top:-56px;

    z-index: 1;

    Which should push the slide show for you under the logo.

    Your page margins are not reset to 0 - that is why you see to the left and to the right area.

    Line 58 of style.css, body - add this:

    margin: 0;

    padding: 0;

    This will reset your margin of body and padding to 0. For anything that requires filling, you can define a substitution within its own class or id.

    For Twitter bar, if you push closer to the menu, what will you do on your trip button "hide"?

    On a sidenote, I've noticed a lot of faulty code:

    headstuff class ="twoColLiqLtHdr" >. "

    scmenu class ="twoColLiqLtHdr" >. "

    tab class ="twoColLiqLtHdr" >. "

    I think you did your tags! You can stick to the definitions standard div... .

    Line 24 of HTML where you set your jQuery script tag is missing a closing >. Fix this.

    Line 138 of HTML:

    <>#">Tag

    Invalid tag.

    Run your code by http://validator.w3.org/, check & fix all the errors first.

  • XMLAGG structure, performance need help for odd nesting in the schema

    Hello

    I have to produce XML to look like:
    <?xml version='1.0'?>
      <enterprise>
        <membership>
          <sourcedid>
            <id>PHYS_101_001_FA2007</id>
          </sourcedid>
        <!-- NOTE: absence of "members" level tag for XMLAGG! -->
        <member>
          <sourcedid>
            <id>D2LU0001</id>
          </sourcedid>
          <role roletype="Sample Role">
            <status>1</status>
          </role>
        </member>
        <member>
          <sourcedid>
            <id>D2LU0002</id>
          </sourcedid>
          <role roletype="Sample Role">
            <status>1</status>
          </role>
        </member>
      </membership>
    </enterprise>
    It would be simple if the scheme allowed for a '< member >' tag under which fit the tags < member >. But it does not this tag, or any other than those listed above.

    I have a query that does not produce this output (with the exception of the roletype attribute), but its execution is horrible; It takes about 40 minutes to return data:
    SELECT
         XMLROOT(
             XMLELEMENT("enterprise",
               XMLAGG(
                 XMLELEMENT("membership",
                   XMLFOREST( XMLELEMENT("id",cx.mapped_course_id) as "sourcedid"
                            ),
                   (SELECT XMLAGG(
                     XMLELEMENT("member",
                       XMLFOREST(XMLELEMENT("id",spriden_id) AS "sourcedid",
                                 XMLELEMENT("status",'1') AS "role"
                                 )
                           )
                          )
                      FROM enrollments_fall_sfrstca efs
                         , spriden sp
                         , gzv_tuid t
                     WHERE sp.spriden_change_ind IS NULL
                       AND sp.spriden_pidm       = t.pidm
                       AND t.tuid                = efs.user_name
                       AND efs.mapped_course_id  = cx.mapped_course_id
                       AND efs.term              = cx.semester
                  )
                    )
                   )
                  )
                , VERSION '1.0', STANDALONE NO VALUE)
      FROM courses_xt cx
    WHERE cx.semester = :term_code
    ;
    Similar queries produce classes and XML users very well without any performance problems, but these are driven out of the view of course or the sight of registrations, but not both.

    Is there another way that I can produce the nesting that I need for the scheme the provider?

    Source views are basically as follows (showing the relevant columns only):
    courses_xt:
    MAPPED_COURSE_ID       SEMEST
    ---------------------- ------
    AVFT209-13307-201210   201210
    AVFT210-13308-201210   201210
    enrollments_fall_sfrstca:
    MAPPED_COURSE_ID       USER_NAME
    ---------------------- ---------
    AVFT209-13307-201210    FULLERC8
    AVFT209-13307-201210    SHUPEK
    AVFT209-13307-201210    NOMAN
    AVFT210-13308-201210    SHUPEK
    AVFT210-13308-201210    PELLONM
    When I make the request without the XML (with subqueries as a column of the outer query), it returns the appropriate fast data (a few minutes).

    I tried various permutations of XMLFOREST, XMLELEMENT, XMLAGG but I get a syntax error, or the data is not going (e.g. repeated "< membership >" for each "< member >", or should I create a "< member >" invalid tag filter later).

    Please advise!

    Thank you
    Anita Lees

    Hi Anita,.

    Have you tried with a GROUP BY and any subquery?

    Here is an example of the use of schema SCOTT.
    I used the same names to tags and structure so that you can see the analogy:

    SELECT XMLElement("enterprise",
             XMLAgg(
               XMLElement("membership",
                 XMLElement("sourceid", xmlelement("id", d.deptno))
               , XMLAgg(
                   XMLElement("member",
                     XMLElement("sourceid",
                       XMLElement("id", e.empno)
                     )
                   , XMLElement("role",
                       XMLAttributes(e.job as "roletype")
                     , XMLElement("status", '1')
                     )
                   )
                 )
               )
             )
           )
    FROM scott.dept d
         LEFT OUTER JOIN scott.emp e ON e.deptno = d.deptno
    WHERE d.deptno IN (10,20)
    GROUP BY d.deptno
    ;
    

    What gives:

    
      
        
          10
        
        
          
            7782
          
          
            1
          
        
        
          
            7934
          
          
            1
          
        
        
          
            7839
          
          
            1
          
        
      
      
        
          20
        
        
          
            7369
          
          
            1
          
        
        
          
            7902
          
          
            1
          
        
        
          
            7566
          
          
            1
          
        
      
    
    
  • Grouping of &lt; cfoutput &gt; Horizontal

    Greetings,

    I'm looking to display grouped data and horizontally and don't do not

    Well. The code in example 1, shows data grouped as expected.

    However, part 2 shows information verically.

    The code in example 2, displays data horizontally when not

    grouped in a frame. However, when I insert the code in the example 2 in

    Example 1 (part 2) I get an error: invalid tag configuration - a query-driven

    cfoutput tag is nested inside a cfoutput tag that also has an attribute query.

    I understand what indicates the error message, but was wondering if what

    I'm tempted to do is even possible - or - I - I missed something with

    the code I have is not it works the way you want?

    Thanks in advance for help and/or an overview of a solution.

    Leonard B

    -View you want-

    January

    -exit - exit

    -exit - exit

    February

    -exit - exit

    -exit - exit

    = Example 1 =.

    <cfoutput query="rs_results" group="shift_date_mm">
    <!--- Begin - Part 1 --->
    <div class="h5Arial" style="clear: both; padding: 10px 0px 0px 0px">
    <cfif shift_date_mm eq 1>January
    <cfelseif shift_date_mm eq 2>February
    <cfelseif shift_date_mm eq 3>March
    <cfelseif shift_date_mm eq 4>April
    <cfelseif shift_date_mm eq 5>May
    <cfelseif shift_date_mm eq 6>June
    <cfelseif shift_date_mm eq 7>July
    <cfelseif shift_date_mm eq 8>August
    <cfelseif shift_date_mm eq 9>September
    <cfelseif shift_date_mm eq 10>October
    <cfelseif shift_date_mm eq 11>November
    <cfelseif shift_date_mm eq 12>December</cfif>
    </div>
    <!--- End - Part 1 --->
    <!--- Begin - Part 2 --->
    <div style="clear: both; padding: 5px 0px 0px 0px">
    <cfoutput>
    <div class="arial14" style="clear: both;">
    #dateformat(shift_date_ff,"mm/dd/yyyy-ddd")# - Station: #station#</div>
    </cfoutput>
    </div>
    <!--- End - Part 2 --->
    </cfoutput>

    = Example 2 =.

    <cfset loctotalrecordcount1 = rs_results.recordcount>
    <cfset locmaxrows1 = ceiling(loctotalrecordcount1 / 3)>
    <cfset locstartrow1 = 1>

    <div style="clear: both; padding: 25px 0px 0px 50px;">

    <div style="clear: both; float: left; width: 225px">
    <!--- -------------------- --->                   
    <cfoutput query="rs_results" startrow="#locstartrow1#" maxrows="#locmaxrows1#">
    <div class="arial14">&##149; <a href="shift_assignments_by_name.cfm?search_date=#dateformat(shift_date_ff,"yyyy-mm-dd")#" class="link1" onfocus="blur()">#dateformat(shift_date_ff,"mm/dd/yyyy - ddd")# &mdash; Station: #station#</a></div>
    <cfset locstartrow1 = locstartrow1 + 1>
    </cfoutput>
    <!--- -------------------- --->
    </div>
    <div style="float: left; width: 225px">
    <!--- -------------------- --->
    <cfoutput query="rs_results" startrow="#locstartrow1#" maxrows="#locmaxrows1#">
    <div class="arial14">&##149; <a href="shift_assignments_by_name.cfm?search_date=#dateformat(shift_date_ff,"yyyy-mm-dd")#" class="link1" onfocus="blur()">#dateformat(shift_date_ff,"mm/dd/yyyy - ddd")# &mdash; Station: #station#</a></div>
    <cfset locstartrow1 = locstartrow1 + 1>
    </cfoutput>    
    <!--- -------------------- --->
    </div>
    <div style="float: left; width: 225px">
    <!--- -------------------- --->
    <cfoutput query="rs_results" startrow="#locstartrow1#" maxrows="#locmaxrows1#">
    <div class="arial14">&##149; <a href="shift_assignments_by_name.cfm?search_date=#dateformat(shift_date_ff,"yyyy-mm-dd")#" class="link1" onfocus="blur()">#dateformat(shift_date_ff,"mm/dd/yyyy - ddd")# &mdash; Station: #station#</a></div>
    </cfoutput>    
    <!--- -------------------- --->
    </div>
    </div>

    "Horizontal" isn't really something to do with ColdFusion - it's going to be in section Presentation you the results of your query using HTML and CSS. Looking at your first "vertical" example, the results are each out in one

    tag. HTML
    s are, by nature, the block-level elements, which means that they would return the entire line and produce the "stacking" you see.

    In the second example, you have a few wrapping div floated, which breaks the

    s on block-level behavior and allow them to 'float' next to each other.

    So if you get the data collection that you would like in example 1, but cannot get them to appear "visually" how you would like to, the answer will be combination of HTML and CSS, you use put them.

    Off-topic, have you ever looked in the tag?  It would be perfect for the 11 elseif you have at the front of your code, just to make the logic a bit more readable.

    I hope this helps.

  • Accessibility (marked PDF) in Adobe Acrobat format

    I was wondering if someone could give me advice on the 'facilitation marking' in a PDF document?

    Here's the situation:

    1. I have the Word 2002 document
    2. Contains text and Word heading styles
    3. PDFed (active by default marking)
    4. In telling Acrobat document properties: ' Tag PDF: Yes.

    My questions are:

    1. What give me marking capabilities or the person I sent you the PDF on to?
    2. It allows them to more easily add comments and for me import these observations of the PDF on to my Word document?

    What I read, it's especially good for people with disabilities (blind, deaf etc), and this allows Acrobat to be able to read the document to the person if necessary.

    Any help would be GREATLY appreicated.

    Thanks in advance,

    dkelley_2

    Only images that have meaning should have all the text. Don't waste your time, or time to a disabled person, with text on anything else. Since you have not mentioned a need for creating accessible documents for the invalid tags, are not required and therefore, ALT text. I'm promoting create accessible documents where possible, but they are not your concern here, I can say.

    This stakeholder may have meant that you must "Extend features in Adobe Reader" - under the Advanced tab AA9 (and maybe 8?). Users who do not have Acrobat and use only Adobe Reader will have this set so that they can perform certain actions on the PDF document.

    In addition, defining a language of a document is not really necessary as far as I've seen. You can run the Adobe accessibility checker and got this error message. Acrobat must add the language during the conversion, but I had problems with it in the past.

    Thank you

    Joe

  • A few comments

    OK, so I finally finshed my site I was working on. Only my first one ever, and I was wondering if some of you web genius would like to give me your comments on things I could improve, or make it look better.

    The site is:

    www.unplugu.com

    Thank you!!

    Jon gives you a link to the validator.  A validation error means that some invalid tags has been used on the page.

    Having a page that validates in and of itself is not very famous.  But knowing that you can generally produce pages which contain only valid HTML, first stop, the validator when you have a problem of layout can often solve your problem immediately.  -Valid code is therefore always a good basis to implement.

    Now - your page is valid, you would still have the same problems as Jon mentioned.  Why?