0

Web ページでNeo Tech Blackフォントを使用して単語のアクセントを使用しようとしていますが、ここでは機能しません。.otfファイルを開くと、大文字と小文字のアルファベットのみが表示されます。フォントの選択を変更する必要がないようにするためにできることはありますか?

私のhtml5コードを簡素化するのは似ています

<html>
    <head>
        <title>Gustavo Schimiti Home Page</title>
        <meta http-equiv='Content-Type' content='text/html; charset=utf-8'/>
        <link rel="stylesheet" type="text/css" href="HPStyle.css"/>
    </head>

    <body>
        <div id="container">
            <header id="page_header"><h1>Gustavo Schimiti<h1></header>

            <nav>Home | Horários</nav>
        </div>
    </body>
</html>

私のcss3コードは次のようなものです

#container {
    width: 960px;
    margin: 0 auto 0;
    position: relative;
}

header {
    background-color: rgb(161, 182, 154);
    border-radius: 10px;
    float: left;
    width: 960px;
    height: 140px;
    font-family: NeoTech;
    src: url("NeoTech-Black.otf") format("opentype");
    text-align: center;
    color: white;
}

nav {
    background-color: rgb(90, 71, 27);
    border-radius: 10px;
    float: left;
    width: 960px;
    height: 40px;
    font-family: NeoTech;
    src: url("NeoTech-Black.otf") format("opentype");
    text-align: center;
    color: white;
}

また、 navタグの「Horários」という単語の「á」文字で問題が発生します。

4

1 に答える 1