1. ホーム
  2. html

[解決済み] ファビコンが機能しない

2022-02-24 04:54:06

質問

自分のウェブページに挿入しようとしているファビコンが機能しません。どなたか、挿入に必要なコードとスタイルを教えていただけませんか?

<html>
    <head>
        <title>Welcome to Crash - Login or Signup</title>
        <link rel="stylesheet" type="text/css" href="crash_styling.css"></link>
        <link rel="icon" href="/favicon.ico" type="image/x-icon">
        <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">      
    </head> 

    <body  link="#336666" alink="red" vlink="red">

        <div id="header_title">
            <h1 id="title">crash</h1>
            <p id="motto">Keep track of all your assignments and projects.</p>
        </div>  

        <form name="input" action="html_form_action.asp" method="get" id="user_passEntry">
            Username:<input type="text" name="username" placeholder="Your Username" /> <br />
            Password:<input type="password" name="password" placeholder="Your Password" />
            <input type="submit" value="submit">
        </form>

        <p id="description">Crash is a way students can keep track of their projects and assignments on the computer or on their devices. With crash, you can be sure you'll never turn in something late again.</p>

                <div class="make"><a href="crash_styling" style="text-decoration:none"/>Make a New Assignment</div>
                <div class="edit"><a href="crash_styling" style="text-decoration:none"/>Edit an Assignment</div>
                <div class="check"><a href="crash_styling" style="text-decoration:none"/>Check off an Assignment</div>
    </body> 

</html>

解決方法は?

あなたのサイトにファビコンを設置するには、以下のように <head> タグ

<link rel="shortcut icon" href="http://yourwebsitepath/favicon.ico" />

アイコンのパスが正しいことを確認する必要があります。パスが正しくない場合、表示されません。 また、キャッシュの問題で、アイコンが動作していないように見えることもあります。 キャッシュをクリアした後は、必ずブラウザを再起動してみてください。