0

私の他のすべてのページは機能します。これは学校のプロジェクト用です。私はそれらを比較しましたが、これには何か問題があります。テンプレートとして使用していて、これだけを使用したいので、やり直したくありません。必要な場合に備えて、ページ全体を投稿しました。問題は、フロドについて2つの段落が表示されないことです。

<html>
<head>
<TITLE>Lord of the Rings: Frodo</TITLE>
<style>
pre{font-family:"Times New Roman", Times, serif;}
pre{font-size:25px;}
pre{color:gold;}

body
{
background-image:url('http://awesomewallpapers.files.wordpress.com/2010/08/one-ring-to-rule-them-all-                1.png');
background-color:#cccccc;
} 

background-repeat:no-repeat;
background-attachment:fixed;
background-position:topleft; 
a{color:blue;}
a:hover{color:gold;}
a:visited{color:white;}
background-repeat:no-repeat;
background-attachment:fixed;
background-position:center; 

</style>
</head>

<body link="white">
<center>

<hr><A HREF="MoviePage.html">Home</A> <A HREF="Characters.html>Characters</A></hr>

<pre>
    Frodo is the main character in this series, the carrier of the One Ring and the
one who must support its burden.  Frodo goes through many trials through the course of
the movies, some include battles, attacks on his mind and even a near death experience.

    Frodo is the nephew of Bilbo Baggins, the once great adventurer who first brought
the ring to the shire.  He is a friend of Gandalf, whom he speaks with everytime he goes
through the Shire.  Frodo and Bilbo's birthday are on the same day, and hold a massive
party in their name.


</pre>

</center>
</body>
</html>
4

3 に答える 3

3

ここに " マークがありません:

 <a HREF="Characters.html">

それをチャックして、すべてが正常に機能していることをjsfiddleで確認しました。ここで更新された作業を確認できます: http://jsfiddle.net/2FBqm/

于 2013-01-02T22:42:01.463 に答える
1

あなたは二重引用符を逃しました。

<hr><A HREF="MoviePage.html">Home</A> <A HREF="Characters.html>Characters</A></hr>
                                                              ^
于 2013-01-02T22:42:22.393 に答える
0

31行目; 二重引用符 ( " ) を閉じるのを忘れました。

この行を次のように置き換えます。

<hr><A HREF="MoviePage.html">Home</A> <A HREF="Characters.html">Characters</A></hr>

ところで、ようこそ:)

于 2013-01-02T22:44:12.853 に答える