I do not get it! Help please
|
|||||
---|---|---|---|---|---|
Author | Message | ||||
goblin
Tenderfoot
Posts: 5
|
Posted: Wed Mar 27, 2013 2:37 pm As a first time user of any SEO software I am a bit lost here. I downloaded the free version of SEO Powersuite and tried it yesterday on our website www.goblinnightvision.com. Let me say that I am not an expert in any way. I do now the basics of html and css and I just do not understand the error report I am getting from the software. Below you can see some example. Can anyone help me with this? Line 7, Column 18: there is no attribute "HTTP-EQUIV" <META HTTP-EQUIV="Content-Language" Content="en"> Line 7, Column 45: there is no attribute "Content" <META HTTP-EQUIV="Content-Language" Content="en"> Line 7, Column 49: element "META" undefined <META HTTP-EQUIV="Content-Language" Content="en"> Line 30, Column 7: end tag for "META" omitted, but OMITTAG NO was specified </head> Line 7, Column 1: start tag was here <META HTTP-EQUIV="Content-Language" Content="en"> Line 30, Column 7: end tag for "head" which is not finished </head> Line 60, Column 13: document type does not allow element "br" here; assuming missing "li" start-tag <br /> <!-- Underpunkt --> |
||||
goblin
Tenderfoot
Posts: 5
|
Posted: Wed Mar 27, 2013 10:50 pm Ok, I now figured out what was wrong with the <META HTTP-EQUIV="Content-Language" Content="en"> it had to be <meta http-equiv="Content-Language" content="en" /> instead However I did not figure out what is wrong with the ones below. Line 30, Column 7: end tag for "head" which is not finished </head> Line 60, Column 13: document type does not allow element "br" here; assuming missing "li" start-tag <br /> <!-- Underpunkt --> |
||||
goblin
Tenderfoot
Posts: 5
|
Posted: Thu Mar 28, 2013 1:41 pm I have copied in a portion of the code I get errors on. I hope this help <div id="navMenu"> <ul> <li> <a href="index.html">Home</a> <!-- Hovedpunkt --> </li> <!-- end main LI --> </ul> <!-- end main UL --> <ul> <li> <a href="#">About nightvision</a> <!-- Hovedpunkt --> <ul> <li><a href="what_is_night_vision.html">what is night vision</a></li> <br /> <!-- Underpunkt --> <li><a href="uses_of_nightvision.html">Uses of Night Vision</a></li> <br /> <!-- Underpunkt --> <li><a href="all_our_night_vision_videos.html">Night Vision Videos</a></li> <br /> <!-- Underpunkt --> </ul> <!-- end inner UL --> </li> <!-- end main LI --> </ul> <!-- end main UL --> |
||||
LinkAssistant
![]() Site Admin
Posts: 5625
|
Posted: Thu Mar 28, 2013 4:47 pm Hello goblin, thanks for the questions. goblin wrote: Line 30, Column 7: end tag for "head" which is not finished </head> Please make sure that you add the end tag for "head" (</head>) at the end of the 'body'. Currently it's not closed. goblin wrote: Line 60, Column 13: document type does not allow element "br" here; assuming missing "li" start-tag <br /> <!-- Underpunkt --> As the message says, the document type does not allow the element "br" (<br>). So, please remove them in this part of the code: <li><a href="what_is_night_vision.html">what is night vision</a></li> <br /> <!-- Underpunkt --> <li><a href="uses_of_nightvision.html">Uses of Night Vision</a></li> <br /> <!-- Underpunkt --> <li><a href="all_our_night_vision_videos.html">Night Vision Videos</a></li> <br /> <!-- Underpunkt --> Please let us know if you have more questions . ![]() |
||||
goblin
Tenderfoot
Posts: 5
|
Posted: Thu Mar 28, 2013 9:27 pm LinkAssistant wrote: Hello goblin, thanks for the questions. goblin wrote: Line 30, Column 7: end tag for "head" which is not finished </head> Please make sure that you add the end tag for "head" (</head>) at the end of the 'body'. Currently it's not closed. goblin wrote: Line 60, Column 13: document type does not allow element "br" here; assuming missing "li" start-tag <br /> <!-- Underpunkt --> As the message says, the document type does not allow the element "br" (<br>). So, please remove them in this part of the code: <li><a href="what_is_night_vision.html">what is night vision</a></li> <br /> <!-- Underpunkt --> <li><a href="uses_of_nightvision.html">Uses of Night Vision</a></li> <br /> <!-- Underpunkt --> <li><a href="all_our_night_vision_videos.html">Night Vision Videos</a></li> <br /> <!-- Underpunkt --> Please let us know if you have more questions . ![]() Linkassisten - Thank you very much for your input. Regarding the <br> I will try this. Regarding the head I did close it and that is why I did not understand it. See the code below: <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <meta http-equiv="Content-Language" content="en" /> <title>3x magnifier lens for PVS-7 and PVS-14 Night Vision</title> <meta name="description" content="3x tactical lens for ITT PVS-14 night vision" /> <meta name="keywords" content="nightvision, 3x, tactical, lens" /> <link href="main.css" rel="stylesheet" type="text/css" /> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script> <style type="text/css"> <!-- .style2 { font-size: 11px; font-weight: bold; } .style4 { font-size: 40px; font-style: italic; } .style13 {font-size: 12px; color: #414958; } .style6 {font-size: 10px; color: #666666; } .style14 {font-size: 11px} --> </style> </head> |
||||
goblin
Tenderfoot
Posts: 5
|
Posted: Thu Mar 28, 2013 9:34 pm LinkAssistant wrote: Hello goblin, thanks for the questions. goblin wrote: Line 30, Column 7: end tag for "head" which is not finished </head> Please make sure that you add the end tag for "head" (</head>) at the end of the 'body'. Currently it's not closed. goblin wrote: Line 60, Column 13: document type does not allow element "br" here; assuming missing "li" start-tag <br /> <!-- Underpunkt --> As the message says, the document type does not allow the element "br" (<br>). So, please remove them in this part of the code: <li><a href="what_is_night_vision.html">what is night vision</a></li> <br /> <!-- Underpunkt --> <li><a href="uses_of_nightvision.html">Uses of Night Vision</a></li> <br /> <!-- Underpunkt --> <li><a href="all_our_night_vision_videos.html">Night Vision Videos</a></li> <br /> <!-- Underpunkt --> Please let us know if you have more questions . ![]() Ok, I just now tried to remove the <br> as described but all that did was to place the sub menu bar horizontally instead of vertically. I of course also understand that these questions might not be the right place to ask. If so I apologize. |
||||
LinkAssistant
![]() Site Admin
Posts: 5625
|
Posted: Sun Mar 31, 2013 3:27 pm Hello Goblin, goblin wrote: I of course also understand that these questions might not be the right place to ask. If so I apologize.[/quote] Please contact our Tech Support Team, specify the page you are experiencing these issues with and our guys will help you correct them all. ![]() |
||||
|