0
<html>
    <head>
        <title>Homepage</title>

        <style type="type/css">
        body {
            font-family: Arial;
            color:#FFFFFF;
            background-attachment:fixed;
        }
        h1 {
            font-family:Arial;
            font-size:49px;
        }
        h2 {
            font-family:Papyrus, Times New Roman;
        }
        h3 {
            font-family:Times New Roman:
        }
        </style>
    </head>

これが私が頭を書いた方法です。私のウェブサイトはスタイルを行っていません。このコードに何か問題がありますか。これをブラウザに入れてソースを見ると、本文、h1、h2、h3 が表示されず、プレーン テキストのようにタグ付けされています。どうすればこれを修正できますか。

4

2 に答える 2

1

スタイル タイプは「type/css」ではなく「text/css」にする必要がありますが、実際には必要ありません。

    <head>
        <title>Homepage</title>

        <style type="text/css">
            body {
                font-family: Arial;
                color:#FFFFFF;
                background-attachment:fixed;
            }
            h1 {
                font-family:Arial;
                font-size:49px;
            }
            h2 {
                font-family:Papyrus, Times New Roman;
            }
            h3 {
                font-family:Times New Roman:
            }
        </style>
    </head>
于 2013-10-16T20:54:10.163 に答える
0
font-family:Times New Roman:

する必要があります

    font-family:Times New Roman;

ちなみに... notepad ++を見てください

; いいえ :

于 2013-10-16T21:13:33.227 に答える