在记事本中创建网站。有麻烦

时间:2013-10-16 20:41:37

标签: html css notepad

<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和标签看起来就像纯文本。我该如何解决这个问题。

2 个答案:

答案 0 :(得分:1)

样式类型应该是“text / css”而不是“type / 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>

答案 1 :(得分:0)

font-family:Times New Roman:

应该是

    font-family:Times New Roman;

旁注...看看记事本++

不是: