简体   繁体   中英

How to add a css font-family?

I downloaded the font-family Tokyo-Outline, but it won't apply. This is not just a problem with this font all font changes that aren't within css don't work.

<!DOCTYPE html>
<html>
    <head>
        <title></title>
        <style>
            @font-face {
                font-family: 'Tokyo-Outline';
                src: url('Tokyo-Outline.eot?#iefix') format('embedded-opentype'),  url('Tokyo-Outline.otf')  format('opentype'),
                        url('Tokyo-Outline.woff') format('woff'), url('Tokyo-Outline.ttf')  format('truetype'), url('Tokyo-Outline.svg#Tokyo-Outline') format('svg');
                font-weight: normal;
                font-style: normal;
            }


            *{
                margin:0;
                padding:0;
                box-sizing:border-box;
                font-family: 'Tokyo-Outline';
            }

            body{
                background-color: rgb(244, 129, 83);
                
            }

            .all{
                position:absolute;
                top:50%;
                left:50%;
                margin-left:-100px;/* half width*/
                margin-top:-300px;/* half height*/
            }
        </style>
    </head>
    <body>
        <div class="all">
            <form class="input">
                <h3> List</h3><input type="text" id="type"><button id="add">&#43;</button>
            </form>
            <div class="list-container">
                <ul class="list"></ul>
            </div>
        </div>

        <script>
        </script>
    </body>
</html>

I am adding filler text because apparently "I don't have enough details." You don't have to read this. Well I have a pink cactus with a green stem.

Maybe check the url path? For example do you have them in a font folder? If so, try something like: url('fonts/Tokyo-Outline.eot').

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM