HTML は、Web ページの標準マークアップ言語であるハイパー テキスト マークアップ言語を意味します。 HTML には要素、属性、その他のタグが含まれます。インターネット上に存在する Web サイトのほとんどは HTML を使用しています。 HTML は習得が簡単で強力です。ハイパー テキストは、ハイパーリンクをクリックして別のページにリダイレクトすることで、Web 上を移動する主な方法です。マークアップでは、テストを特定のタイプとしてマークすることで、HTML タグを使用してテスト内のテキストを表示します。 HTML コマンド要素は HTML ページの構成要素であり、要素に関する追加情報を提供する属性を持つことができ、属性はペアで存在します。
基本的なコマンドは次のとおりです:
サンプル HTML ドキュメントには、Web ページの構成要素である HTML 要素が含まれます。HTML 要素の一部は、ルート要素である 、 です。これにはメタ情報が含まれます。
コード:
html> <meta> <title>Page Title</title> <h1>This is a Heading</h1> <p>This is a paragraph.</p> <p>This is another paragraph.</p>
出力:
HTML 見出しは、タグ
以下のような見出しを持つサンプル HTML コード:
<h1> This is heading 1 </h1> <h2> This is heading 2 </h2> <h3> This is heading 3 </h3> <h4> This is heading 4 </h4>
出力:
HTML 段落は、
を使用して定義する HTML 要素です。タグ、サンプルコードは次のとおりです:
<p> This is a paragraph </p> <p> This is another paragraph </p>
出力:
HTML 画像は タグで定義された HTML 要素であり、画像の src 、alt は代替テキスト、表示する画像の幅、高さを意味するなどの属性を記述する必要があります。サンプルコードは次のとおりです。
コード:
<img src="HTML%E3%82%B3%E3%83%9E%E3%83%B3%E3%83%89.jpg" alt="HTMLコマンド" style="max-width:90%">
出力:
HTML リストは HTML 要素であり、タグ
コード:
出力:
HTML テーブルは HTML 要素であり、タグ
が付いたセル以下のようにコードを記述します:
コード: ログイン後にコピー ログイン後にコピー
出力: 7.リンクに言及HTML リンクは HTML 要素であり、タグ を使用して定義できます。サンプルコードは以下のとおりです: コード: <a href="https://www.HTML%E3%82%B3%E3%83%9E%E3%83%B3%E3%83%89.com">This is a link </a> ログイン後にコピー 出力: 8.スタイル属性HTML 属性スタイルは、 などの任意の HTML 要素の組み合わせで使用できます。サンプル コードは次のとおりです。 コード: <p style="color:red"> I am a paragraph </p> ログイン後にコピー 出力: 9. lang 属性HTML では、lang 属性を使用して、 を使用してドキュメントの言語を宣言できます。タグ、言語は lang 属性を使用して定義されており、サンプルコードは次のとおりです: コード: ... ... ログイン後にコピー 出力: 10. HTML 要素の書式設定HTML では、書式設定要素を使用して HTML ドキュメントを書式設定したり、特別な意味を持つテキストの特別な要素を定義したりできます。 のような HTML 要素太字の場合は 斜体 コード: <b> This text is bold. </b> ログイン後にコピー 出力: 中間 HTML コマンド中間コマンドは次のとおりです: 1.テキストを強調表示HTML では、要素 を使用して HTML ドキュメント内のテキストを強調表示できます。 で囲まれたテキストが強調表示されるようにします。要素、サンプルコードは以下のとおりです: <h2> html <mark> Marked </mark> formtting </h2> ログイン後にコピー 出力: 2. Delete textIn HTML, we can delete some text using <p> My favorite color is <del> Navy blue </del> Red </p> ログイン後にコピー Output: 3. Define superscripted textIn HTML, we can define the text as superscripted using element in the HTML document so that text enclosed in element will be superscripted, and the sample code is as below: <p> This is <sup> superscripted </sup> text </p> ログイン後にコピー Output: 4. Define abbreviationIn HTML, we can define abbreviations by using the HTML element in the HTML document, which will give useful information to browsers, and the sample code is as below: <p> The <abbr title="World Health Organization">WHO </abbr> was founded in 1948 </p> ログイン後にコピー Output: 5. Mention AddressIn HTML, we can mention the address in an HTML document using HTML element , which defines contact information or address related to the article or document and displays in italics and the sample code as below:<address> Written by Srinivas <br> dasu.com <br> Pincode : 500084, Hyderabad <br> India </address> ログイン後にコピー Output: Advanced HTML CommandsThe advanced commands are as follows: 1. Display a webpage inside a webpageIn HTML, we can display a webpage inside a webpage using HTML iframe, which is defined using the tag <iframe src="demo.html" height="300" width="300"> </iframe> ログイン後にコピー 2. Target different targets using iframeIn HTML, we can use the target frame as a link using the iframe tag in the HTML document, and the target attribute to the link must refer to the name attribute of the iframe and sample code is as below: <iframe src="demo.html" name="iframe1"> </iframe> <p> <a href="www.google.com" target="iframe1"> Google.co.in </a> </p> ログイン後にコピー Tips and Tricks to Use HTML Commands
ConclusionFinally, it’s all about different types of HTML commands of various levels are briefly discussed with examples. After reading this article, I hope you will have a good idea of how to use HTML commands. |
以上がHTMLコマンドの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。