1. ホーム
  2. Web制作
  3. HTML/Xhtml

htmlのheaderタグの使い方を説明する

2022-01-08 12:34:51

 HTMLの2つの部分、headとbody

    ** headの中にあるタグはheaderタグです。

      ** タイトルタグ:タグに表示される内容を示します。

      ** メタタグ:ページに関連する内容を設定する(使用頻度低め)

        NotificationManager manager= (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);

        Notification notification=new Notification(R.drawable.icon_notification,"Qu Yuan Gang", System.currentTimeMillis());

        notification.setLatestEventInfo(context,"QuYuanGang",pushInfo,null);
        manager.notify(R.drawable.icon_notification,notification);

      ** 基本タグ:ハイパーリンクの基本的な設定を行います。

        - ハイパーリンクの開き方を統一的に設定することができます

NotificationManager nm = (NotificationManager) this.getSystemService(Context.NOTIFICATION_SERVICE); // Notification notification = new Notification.Builder(this) .setContentTitle("Title") .setContentText("Content") .setSmallIcon(R.mipmap.ic_launcher) // .setLargeIcon(mBitmap) .build(); nm.notify(1,notification);

      ** リンクタグ:外部ファイルの取り込み

         ** cssで使用する場合、linkタグでcssファイルを紹介することができます。

  フルコードです。

<html>
    <head>
        <title>World</title>
        <meta name="keywords" content="Panda, golden monkey, dinosaur"/>
        <! --<meta http-equiv="refresh" content="3;url=01-hello.html"/>-->
        <base target="_blank"/>
    </head>
    <body>
        <h3>header tag</h3>
        <a href="01-hello.html">hyperlink1</a>
        <a href="01-hello.html">hyperlink2</a>
        <a href="01-hello.html">hyperlink3</a>
    </body>
</html>

概要

上記はhtmlヘッダタグの使い方を少し紹介したものですが、お役に立てれば幸いです。これからもスクリプトハウスのウェブサイトをよろしくお願いします。