HTML
 Computer >> コンピューター >  >> プログラミング >> HTML

HTML
引用属性


要素のcite属性は、引用のソースを設定するために使用されます。

以下は構文です-

<blockquote cite="url">

上記では、urlが引用のソースです。

要素-

のcite属性を実装する例を見てみましょう。

<!DOCTYPE html>
<html>
<body>
<h2>Magento</h2>
<p>Magento as stated on the official website:</p>
<blockquote cite="https://magento.com/products">
   Magento Commerce, part of Adobe Commerce Cloud, offers a one-of-a-kind eCommerce solution with enterprise power,
      unlimited scalability, and open-source flexibility for B2C and B2B experiences.
   Magento allows you to create unique, full-lifecycle customer experiences proven to generate more sales.
</blockquote>
</body>
</html>

出力

HTML blockquote 引用属性

上記の例では、

テキスト-

を使用して見積もりを設定しています。
<blockquote cite="https://magento.com/products">
   Magento Commerce, part of Adobe Commerce Cloud, offers a one-of-a-kind eCommerce solution with enterprise power,
      unlimited scalability, and open-source flexibility for B2C and B2B experiences.
   Magento allows you to create unique, full-lifecycle customer experiences proven to generate more sales.
</blockquote>

引用のソースは、引用属性を使用して設定されます-

cite="https://magento.com/products"

  1. HTML行スパン属性

    HTMLのrowspan属性は、テーブルのセルがHTMLドキュメントでまたがる行数を定義します。 tdにのみ適用できます または番目 HTML要素。 構文 以下は構文です- <tagname rowspan=”number”></tagname> HTML行スパン属性の例を見てみましょう- 例 <!DOCTYPE html> <html> <style>    body {       color: #000;       b

  2. HTMLtabindex属性

    HTML tabindex属性は、HTMLドキュメント内の要素のタブ順序を定義します。これはグローバル属性であり、任意のHTML要素で使用できることを意味します。 構文 以下は構文です- <tagname tabindex=”number”></tagname> 例 HTMLのtabindex属性の例を見てみましょう- <!DOCTYPE html> <html> <style>    body {       color: #000;   &nb