HTML语法错误

时间:2016-04-12 22:50:57

标签: html

这是一个封闭的HTML,因为它是一个2部分的东西..这里是完整的代码。我已经在这项任务中苦苦挣扎了一个多星期了..如果你能帮助我,我会非常感激。当我尝试验证下面我得到的错误是:“”错误:迷路开始标记a。 从第39行第1列;到第39行,第22栏 ↩↩↩Learn 致命错误:上次错误后无法恢复。任何进一步的错误都将被忽略。 从第39行第1列;到第39行,第22栏 ↩↩↩学习“”

<!DOCTYPE html>
<style type="text/css">
<meta charset="utf-8">
  table
  {
     border-style: solid;
  }

  td
  {
     border-style: solid; 
     border-color: #FF66FF;
     padding: 10px;
   }
</style>
<title>
Ian Morgan Kettell
</title>


<body>
<h1>Ian's Hobbies! </h1>
<table>
<tr>
  <td>Camping</td>
  <td>Hiking</td>
  <td>Cycling</td>
</tr>
<tr>
  <td>Fishing</td>
  <td>Kayaking</td>
  <td>Skiing</td>
</tr>
</table>
</body>

</html>

<a href="movies.html">Learn about Ian's Favorite Actors and Movies!</a>
<html lang="en">
<meta charset="utf-8">

<title>
Ian Morgan Kettell
</title>
<h3>
My Favorite Movies
</h3>
<ul>
    <li>
        Promised Land
    </li>
    <li>
        Flight
    </li>
    <li>
        Taken
    </li>
</ul>
<p>
    The movies I chose were Promised Land starring Matt Damon, Flight starring Denzel Washington, and Taken starring Liam Neeson. Even though I have an endless
    list of favorite movies these are by far my top 3. I like them because I like movies I can learn things from. For instance; Promised Land is a film about
    oil companies fighting to buy land from farmers to frack the land to find oil. It shows both sides of the process of how they convince people and I found
    it extremely interesting.
</p>
<h3>
    My Favorite Actors
</h3>
<ul>
    <li>
        Matt Damon
    </li>
    <li>
        Denzel Washington
    </li>
    <li>
        Liam Neeson
    </li>
</ul>
<p>
    If I had to choose my favorite actors my top 3 would be Matt Damon, Denzel Washington, and Liam Neeson. I think Denzel Washington is my favorite actor of
    all time. He has been an actor since the year 1981 when he made his debut apperance in the comedy A Carbon Copy.He is best known for Philadelphia Man, Man
    on Fire, The Book Of Eli, American Gangster, and Flight.In recent years he has starred in action movies. Some of my favorite movies he's in are Inside Man,
    Out of Time and The Book Of Eli, these are all kind of action dramas.
</p>
</html>

5 个答案:

答案 0 :(得分:2)

您的代码绝对混乱,并且不遵循HTML文件的正确文档结构,该文件应该是:

<!DOCTYPE html>
<html lang="en-us">
<head>
  <meta charset="utf-8">
  <title></title>
</head>
<body>


</body>
</html>

您在错误的位置有多个<html>标记和标记,其内容不应包含在其中。例如,您的<meta>标记位于<style>元素内。我看到的其他问题:您有一个<h1>,然后跳转到<h3><h2>

的位置

因此,您的文件需要重新编写为(确实如此):

&#13;
&#13;
<!DOCTYPE html>
    <html>
      <head>
         <meta charset="utf-8">
         <title>Ian Morgan Kettell</title>
         <style>
             table {
               border-style: solid;
             }
    
             td {
              border-style: solid; 
              border-color: #FF66FF;
              padding: 10px;
             }
         </style>
       </head>
       <body>
         <h1>Ian's Hobbies! </h1>
         <table>
           <tr>
            <td>Camping</td>
            <td>Hiking</td>
            <td>Cycling</td>
          </tr>
          <tr>
            <td>Fishing</td>
            <td>Kayaking</td>
            <td>Skiing</td>
          </tr>
        </table>
   
        <a href="movies.html">Learn about Ian's Favorite Actors and Movies!</a>
       <h2>My Favorite Movies</h2>
       <ul>
        <li>Promised Land</li>
        <li>Flight</li>
        <li>Taken</li>
       </ul>
      <p>
        The movies I chose were Promised Land starring Matt Damon, Flight
        starring Denzel Washington, and Taken starring Liam Neeson. Even though
        I have an endless list of favorite movies these are by far my top 3. I 
        like them because I like movies I can learn things from. For instance; 
        Promised Land is a film about oil companies fighting to buy land from 
        farmers to frack the land to find oil. It shows both sides of the 
        process of how they convince people and I found it extremely interesting.
     </p>
     <h2>My Favorite Actors</h2>
     <ul>
        <li>Matt Damon</li>
        <li>Denzel Washington</li>
        <li>Liam Neeson</li>
     </ul>
     <p>
        If I had to choose my favorite actors my top 3 would be Matt Damon, 
        Denzel Washington, and Liam Neeson. I think Denzel Washington is my 
        favorite actor of all time. He has been an actor since the year 1981 
        when he made his debut apperance in the comedy A Carbon Copy.He is best 
        known for Philadelphia Man, Man on Fire, The Book Of Eli, American 
        Gangster, and Flight.In recent years he has starred in action movies. 
        Some of my favorite movies he's in are Inside Man, Out of Time and The 
        Book Of Eli, these are all kind of action dramas.
     </p>
    </html>
&#13;
&#13;
&#13;

答案 1 :(得分:0)

您应该更正标签的顺序和结构,使其如下所示:

<!doctype html>
<html>
    <head>
    <meta ...>
    <style type="text/css">
    ...
    </style>
    <title>...</title>
    </head>
    <body>
    ...
    </body>
</table>

尝试自己填充点。

答案 2 :(得分:0)

以下是有效网页的标准标记:

<!DOCTYPE html>
<html>
    <head>
        <title>Webpage Title</title>
    </head>
    <body>

    </body>
</html>

上述HTML中的所有代码只能在文件中显示 ONE 时间,并且在此安排中。

答案 3 :(得分:0)

在线验证HTML DOM结构非常容易:

您的代码存在以下问题:

Content Occurs After End Of Body (At line 39, column 1)
Discarding Unexpected <html> (At line 40, column 2)
<meta> Lacks "content" Attribute (At line 41, column 1)
Content Occurs After End Of Body (At line 41, column 1)
<meta> Isn't Allowed In <body> Elements (At line 41, column 1)
Content Occurs After End Of Body (At line 43, column 2)
<title> Isn't Allowed In <body> Elements (At line 43, column 2)
Content Occurs After End Of Body (At line 46, column 2)
Content Occurs After End Of Body (At line 49, column 1)
Content Occurs After End Of Body (At line 60, column 1)
Content Occurs After End Of Body (At line 66, column 1)
Content Occurs After End Of Body (At line 69, column 1)
Content Occurs After End Of Body (At line 80, column 1)
Discarding Unexpected </html> (At line 86, column -3)

您可以使用多个在线HTML验证程序来检查此内容,例如W3C Markup Validation Service或其他工具,例如this one.

因此,在您的具体情况下,您在第39行上有一个结束html标记,这是我们可以看到的第一个错误和经典

Content Occurs After End Of Body (At line 39, column 1)

等等。 当 W3C 验证程序指出时,第一个错误标记为FATAL,无法解析结构:

Fatal Error: Cannot recover after last error. Any further errors will be ignored.

答案 4 :(得分:-1)

您在本文档中遇到了很多错误:

  1. 您忘了在<!DOCTYPE html>
  2. 之后立即放好
  3. 您需要将样式和标题放在<head></head>标记
  4. 之间
  5. 当您只需要一个标题时,您的文档中就有2个标题。
  6. 当您需要时,您有2个结束</html>标记。它应该只在底部
  7. 这是你的代码全部清理完毕。你现在不应该得到任何错误:

    <!DOCTYPE html>
    <html>
        <head>
            <style type="text/css">
            table {
                border-style: solid;
            }
        
            td {
                border-style: solid;
                border-color: #FF66FF;
                padding: 10px;
            }
        </style>
        <title>
            Ian Morgan Kettell
        </title>
    </head>
    
    
    
    <body>
    <h1>Ian's Hobbies! </h1>
    <table>
    <tr>
      <td>Camping</td>
      <td>Hiking</td>
      <td>Cycling</td>
    </tr>
    <tr>
      <td>Fishing</td>
      <td>Kayaking</td>
      <td>Skiing</td>
    </tr>
    </table>
    
    
    
    <a href="movies.html">Learn about Ian's Favorite Actors and Movies!</a>
    
    
    
    <h2>
    My Favorite Movies
    </h2>
    <ul>
        <li>
            Promised Land
        </li>
        <li>
            Flight
        </li>
        <li>
            Taken
        </li>
    </ul>
    <p>
        The movies I chose were Promised Land starring Matt Damon, Flight starring Denzel Washington, and Taken starring Liam Neeson. Even though I have an endless
        list of favorite movies these are by far my top 3. I like them because I like movies I can learn things from. For instance; Promised Land is a film about
        oil companies fighting to buy land from farmers to frack the land to find oil. It shows both sides of the process of how they convince people and I found
        it extremely interesting.
    </p>
    <h2>
        My Favorite Actors
    </h2>
    <ul>
        <li>
            Matt Damon
        </li>
        <li>
            Denzel Washington
        </li>
        <li>
            Liam Neeson
        </li>
    </ul>
    <p>
        If I had to choose my favorite actors my top 3 would be Matt Damon, Denzel Washington, and Liam Neeson. I think Denzel Washington is my favorite actor of
        all time. He has been an actor since the year 1981 when he made his debut apperance in the comedy A Carbon Copy.He is best known for Philadelphia Man, Man
        on Fire, The Book Of Eli, American Gangster, and Flight.In recent years he has starred in action movies. Some of my favorite movies he's in are Inside Man,
        Out of Time and The Book Of Eli, these are all kind of action dramas.
    </p>
    </body>
    </html>