htmlのheaderタグの使い方を説明する
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ヘッダタグの使い方を少し紹介したものですが、お役に立てれば幸いです。これからもスクリプトハウスのウェブサイトをよろしくお願いします。
関連
最新
-
nginxです。[emerg] 0.0.0.0:80 への bind() に失敗しました (98: アドレスは既に使用中です)
-
htmlページでギリシャ文字を使うには
-
ピュアhtml+cssでの要素読み込み効果
-
純粋なhtml + cssで五輪を実現するサンプルコード
-
ナビゲーションバー・ドロップダウンメニューのHTML+CSSサンプルコード
-
タイピング効果を実現するピュアhtml+css
-
htmlの選択ボックスのプレースホルダー作成に関する質問
-
html css3 伸縮しない 画像表示効果
-
トップナビゲーションバーメニュー作成用HTML+CSS
-
html+css 実装 サイバーパンク風ボタン