HTML タグ
HTMLの
タグは、単一の入力改行を設定するために使用されます。 HTMLでbrタグを実装する例を見てみましょう-
例
<!DOCTYPE html> <html> <body> <h2>Demo Heading</h2> <p>This is a demo text! The next paragraph will appear after two line breaks.</p> <br><br> <p>We have set a demo paragraph here. We have set a demo paragraph here. We have set a demo paragraph here. We have set a demo paragraph here. We have set a demo paragraph here. We have set a demo paragraph here. The next line will appear after a single line break.</p><br> <p>This is a demo text!</p> </body> </html>
出力
上記の例では、
タグを使用しています。
タグを2回使用して、次の段落に2つの改行を設定します-
<p>This is a demo text! The next paragraph will appear after two line breaks.</p> <br><br>
これで、
タグを1回だけ使用して、次の行に1つのブレークのみが設定されます-
<p>We have set a demo paragraph here. We have set a demo paragraph here. We have set a demo paragraph here. We have set a demo paragraph here. We have set a demo paragraph here. We have set a demo paragraph here. The next line will appear after a single line break.</p><br> <p>This is a demo text!</p>
-
HTML<font>タグ
HTMLのタグは、フォントの色、フォントファミリ、およびフォントサイズを設定するために使用されます。以下は属性です- 色: フォントの色を設定します。 顔: フォント面、つまりファミリを設定します。 サイズ :フォントサイズを設定します 注 −タグはHTML5ではサポートされていません。 ここで、HTMLでタグを実装する例を見てみましょう- 例 <!DOCTYPE html> <html> <body> <h2>Playing with Fonts</h2> <p&
-
HTML<dfn>タグ
HTMLのタグは、HTMLの用語のインスタンスを定義するために使用されます。これは、用語の最初の使用法です。 タグ-を実装する例を見てみましょう。 例 <!DOCTYPE html> <html> <body> <h2>Subjects in MCA</h2> <p><dfn title="Master of Computer Applications">MCA</dfn> is a 3-year post graduate degree course </p> &