Как написать h2o html

Верхний и нижний индексы

Индексом по отношению к тексту называется смещение символов относительно базовой линии вверх или вниз. В зависимости от положительного или отрицательного значения, индекс называется, соответственно, верхним или нижним. Они активно применяются в математике, физике, химии и для обозначения единиц измерения. HTML предлагает два тега для создания индекса: <sup> — верхний индекс и <sub> — индекс нижний. Текст, помещенный в один из этих контейнеров, обозначается меньшим размером, чем базовый текст и смещается относительно горизонтали.

В примере 7.6 показано, где применяется подобный текст

Пример 7.6. Использование нижнего индекса

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
 <head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  <title>Нижний индекс</title>
 </head>
 <body>
  <p><b>Формула серной кислоты:</b> <i>H<sub>2</sub>SO<sub>4</sub></i></p>
 </body>
</html>

Результат данного примера показан на рис. 7.6.

Отображение текста в виде нижнего регистра

Рис. 7.6. Отображение текста в виде нижнего регистра

HTML по теме

Статьи по теме

Это задание архивной части. Перейдите по ссылке, чтобы пройти актуальный тренажёр.

Следующие два тега обычно используются не для выделения слов, а для выделения отдельных символов. Их используют для указания единиц измерения или для написания простых формул.

Например: 20 м2, H2O, X3+X2=1

Тег <sup> отображает текст в виде верхнего индекса.

Тег <sub> отображает текст в виде нижнего индекса.

Стоит отметить, что эти теги являются чисто презентационными и не имеют собственной семантики.

Эти теги можно использовать внутри друг друга для создания более сложных формул.

Если вам нужно вставить очень сложную формулу в HTML-документ, лучше воспользоваться специальным языком разметки MathML.

Subscript: The <sub> tag is used to add a subscript text to the HTML document. The <sub> tag defines the subscript text. Subscript text appears half a character below the normal line and is sometimes rendered in a smaller font. Subscript text can be used for chemical formulas, like H2O to be written as H2O.
Superscript: The <sup> tag is used to add a superscript text to the HTML document. The <sup> tag defines the superscript text. Superscript text appears half a character above the normal line and is sometimes rendered in a smaller font. Superscript text can be used for footnotes.
Examples: 
 

  1. Super and Sub script in HTML code: 
     

html

<!DOCTYPE html>

<html>

<body>

<p>Testing <sub>subscript text</sub></p>

<p>Testing <sup>superscript text</sup></p>

</body>

</html>                    

  1. Output: 
     

  1.  
  2. Set style of subscript with CSS: 
     

html

<!DOCTYPE html>

<html>

<head>

    <style>

        sub {

            vertical-align: sub;

            font-size: small;

        }

    </style>

</head>

<body>

<p>A sub element is displayed like this</p>

<p>This text contains <sub>subscript text</sub></p>

<p>Change the default CSS settings to see the effect.</p>

</body>

</html>

  1. Output: 
     

  1.  
  2. Another example with CSS: 
     

html

<!DOCTYPE html>

<html>

<head>

    <style>

        sub {

            vertical-align: sub;

            font-size: medium;

        }

    </style>

</head>

<body>

<p>Examples to demonstrate subscript text</p>

<p> Chemical formula of water is H<sub>2</sub>O</p>

<p>T<sub>i+2</sub>= T<sub>i</sub> + T<sub>i+1</sub></p>

<p>Change the default CSS settings to see the effect.</p>

</body>

</html>

  1. Output: 
     

  1. Superscript Example With CSS: 
     

html

<!DOCTYPE html>

<html>

<head>

    <style>

    sup {

        vertical-align: super;

        font-size: small;

    }

    </style>

</head>

<body>

<p>A sup element is displayed like this:</p>

<p>This text contains <sup>superscript text</sup></p>

<p>Change the default CSS settings to see the effect.</p>

</body>

</html>

  1. Output: 
     

  1.  
  2. Example to write mathematical equations using super and subscripts: 
     

html

<!DOCTYPE html>

<html>

<head>

    <style>

    sup {

        vertical-align: super;

        font-size: medium;

    }

    </style>

</head>

<body>

<p>Examples to demonstrate superscript text</p>

<p>2 <sup>4</sup>=16</p>

<p>X <sup>4</sup>+ Y<sup>6</sup></p>

<p>9<sup>th</sup> of september</p>

<p>Change the default CSS settings to see the effect.</p>

</body>

</html>                    

  1. Output: 
     

Supported Browser: Supported browsers are listed below. 
 

  • Google Chrome
  • Internet Explorer
  • Firefox
  • Opera
  • Safari

This article is contributed by Shubrodeep Banerjee. If you like GeeksforGeeks and would like to contribute, you can also write an article using write.geeksforgeeks.org or mail your article to review-team@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.
 

HTML is the foundation of webpages, is used for webpage development by structuring websites and web apps.You can learn HTML from the ground up by following this HTML Tutorial and HTML Examples.

Subscript: The <sub> tag is used to add a subscript text to the HTML document. The <sub> tag defines the subscript text. Subscript text appears half a character below the normal line and is sometimes rendered in a smaller font. Subscript text can be used for chemical formulas, like H2O to be written as H2O.
Superscript: The <sup> tag is used to add a superscript text to the HTML document. The <sup> tag defines the superscript text. Superscript text appears half a character above the normal line and is sometimes rendered in a smaller font. Superscript text can be used for footnotes.
Examples: 
 

  1. Super and Sub script in HTML code: 
     

html

<!DOCTYPE html>

<html>

<body>

<p>Testing <sub>subscript text</sub></p>

<p>Testing <sup>superscript text</sup></p>

</body>

</html>                    

  1. Output: 
     

  1.  
  2. Set style of subscript with CSS: 
     

html

<!DOCTYPE html>

<html>

<head>

    <style>

        sub {

            vertical-align: sub;

            font-size: small;

        }

    </style>

</head>

<body>

<p>A sub element is displayed like this</p>

<p>This text contains <sub>subscript text</sub></p>

<p>Change the default CSS settings to see the effect.</p>

</body>

</html>

  1. Output: 
     

  1.  
  2. Another example with CSS: 
     

html

<!DOCTYPE html>

<html>

<head>

    <style>

        sub {

            vertical-align: sub;

            font-size: medium;

        }

    </style>

</head>

<body>

<p>Examples to demonstrate subscript text</p>

<p> Chemical formula of water is H<sub>2</sub>O</p>

<p>T<sub>i+2</sub>= T<sub>i</sub> + T<sub>i+1</sub></p>

<p>Change the default CSS settings to see the effect.</p>

</body>

</html>

  1. Output: 
     

  1. Superscript Example With CSS: 
     

html

<!DOCTYPE html>

<html>

<head>

    <style>

    sup {

        vertical-align: super;

        font-size: small;

    }

    </style>

</head>

<body>

<p>A sup element is displayed like this:</p>

<p>This text contains <sup>superscript text</sup></p>

<p>Change the default CSS settings to see the effect.</p>

</body>

</html>

  1. Output: 
     

  1.  
  2. Example to write mathematical equations using super and subscripts: 
     

html

<!DOCTYPE html>

<html>

<head>

    <style>

    sup {

        vertical-align: super;

        font-size: medium;

    }

    </style>

</head>

<body>

<p>Examples to demonstrate superscript text</p>

<p>2 <sup>4</sup>=16</p>

<p>X <sup>4</sup>+ Y<sup>6</sup></p>

<p>9<sup>th</sup> of september</p>

<p>Change the default CSS settings to see the effect.</p>

</body>

</html>                    

  1. Output: 
     

Supported Browser: Supported browsers are listed below. 
 

  • Google Chrome
  • Internet Explorer
  • Firefox
  • Opera
  • Safari

This article is contributed by Shubrodeep Banerjee. If you like GeeksforGeeks and would like to contribute, you can also write an article using write.geeksforgeeks.org or mail your article to review-team@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.
 

HTML is the foundation of webpages, is used for webpage development by structuring websites and web apps.You can learn HTML from the ground up by following this HTML Tutorial and HTML Examples.

В отношении текста под индексом понимают смещенные символы вниз или вверх относительно базовой линии текста. Они в основном применяются в научно-техническом контенте.

Парный тег <sup> — верхний индекс.
Парный тег <sub> — нижний индекс.

Пример
100 м<sup>2</sup> — 100 м2
C<sub>2</sub>H<sub>5</sub>OH — C2H5OH

Таблица верхних и нижних индексов в Юникоде

Название Нижний индекс Верхний индекс
Ноль
Один ¹
Два ²
Три ³
Четыре
Пять
Шесть
Семь
Восемь
Девять
Плюс
Минус
Плюс
Равно
Левая скобка
Правая скобка
Латинская n
    Надстрочные символы:

  • Латинские: ᴬ ᴮ ᴯ ᴰ ᴲ ᴲ ᴳ ᴴ ᴵ ᴶ ᴸ ᴹ ᴻ ᴼ ᴽ ᴿ ᵀ ᵁ ᵂ ᵃ ᵅ ᵆ ᵇ ᵈ ᵊ ᵍ ᵏ ᵂ ᵂ ᵃ ᵆ ᵇ ᵉ ᵍ ᵏ ᵐ ᵂ ᵃ ᵐ ᵐ ᵐ ᵐ ᵑ ᵒ ᵓ ᵖ ᵗ ᵘ ᵚ ᵛᶛ ᶝ ᶞ ᶟ ᶠ ᶡ ᶢ ᶤ ᶤ ᶥ ᶦ ᶧ ᶩ ᶪ ᶫ ᶭ ᶮ ᶯ ᶱ ᶲ ᶳ ᶴ ᶵ ᶶ ᶸ ᶹ ᶺ ᶻ ᶼ ᶾ ᶲ ᶳ ᶴ ᶶ ᶷ ᶹ ᶺ ᶻ ᶽ ᶾ ᶾ ᶳ ᶴ ᶶ ᶸ ᶹ ᶻ ᶼ ᶾ ᶾ ᶾ ᶿ
  • Греческие: ᵝ ᵞ ᵟ ᵠ
  • Кириллица: ᵸ
  • Другие: ᵎ ᵔ ᵕ ᵙ ᵜ
    Подстрочные символы:

  • Латинские: ᵢ ᵣ ᵤ ᵥ
  • Греческие: ᵦ ᵧ ᵨ ᵩ ᵪ

Индексом по отношению к тексту называется смещение символов относительно базовой линии вверх или вниз. В зависимости от положительного или отрицательного значения смещения, индекс называется, соответственно, верхним или нижним. Они активно применяются в математике, физике, химии и для обозначения единиц измерения. HTML предлагает два элемента для создания индекса: <sup> (от англ. superscript) — верхний индекс и <sub> (от англ. subscript) — нижний индекс. Текст,
помещённый в один из этих контейнеров, обозначается меньшим размером, чем базовый текст, и смещается относительно него вверх или вниз. В примере 1 приведено совместное использование указанных элементов и стилей для изменения вида текста.

Пример 1. Создание верхнего и нижнего
индекса

<!DOCTYPE html>
<html>
<head>
<meta charset=»utf-8″>
<title>Верхний и нижний индекс</title>
<style>
.formula { font-size: 1.4em; /* Размер текста формулы */ }
sup, sub {
font-style: italic; /* Курсивное начертание */
color: red; /* Красный цвет символов */
}
sub {
color: blue; /* Синий цвет символов */
}
</style>
</head>
<body>
<p>Характеристическое уравнение поверхности второй степени</p>
<p class=»formula»>λ<sup>3</sup> — I<sub>1</sub>λ<sup>2</sup> +
I<sub>2</sub>λ — I<sub>3</sub> = 0</p>
</body>
</html>

В примере одновременно встречается как нижний, так и верхний индекс. Для изменения начертания шрифта индекса применяются стили, которые задают единое оформление (рис. 1).

Вид индексов после применения стилей

Рис. 1. Вид индексов после применения стилей

Можно вообще отказаться от использования <sup> и <sub> в пользу стилей. Аналогом этих элементов служит свойство vertical-align, заставляющее текст смещаться по вертикали на заданное расстояние. В частности, в примере 2 в качестве значения применяется 0.8em для верхнего индекса и -0.5em для нижнего. Em — это относительная единица, равная размеру текущего шрифта. Например, 0.5em говорит о том, что текст надо сдвинуть на половину размера шрифта.

Пример 2. Использование стилей для управления индексами

<!DOCTYPE html>
<html>
<head>
<meta charset=»utf-8″>
<title>Верхний и нижний индекс</title>
<style>
.formula {
font-size: 1.6em; /* Размер текста */
font-style: italic; /* Курсивное начертание */
}
.sup, .sub {
font-style: normal; /* Нормальное начертание */
font-size: 0.6em; /* Размер индекса */
color: red; /* Цвет верхнего индекса */
vertical-align: 0.8em; /* Сдвигаем текст вверх */
}
.sub {
color: blue; /* Цвет нижнего индекса */
vertical-align: -0.5em; /* Сдвигаем текст вниз */
}
</style>
</head>
<body>
<p>Многочлен степени <em>n</em></p>
<p class=»formula»>f(x) = a<span class=»sub»>0</span> + a<span class=»sub»>1</span> x + … +
a<span class=»sub»>n-1</span> x<span class=»sup»>n-1</span> +
a<span class=»sub»>n</span> x<span class=»sup»>n</span></p>
</body>
</html>

В примере сама формула выводится увеличенным размером, символы верхнего индекса устанавливаются красным цветом, а нижние — синим (рис. 2).

Управление положением и видом нижнего и верхнего индекса

Рис. 2. Управление положением и видом нижнего и верхнего индекса

Использование элемента <span> делает код громоздким, поэтому лучше переопределить стили <sub> и <sup>, в частности, задать положение индекса, цвет и курсивное начертание.

См. также

Последнее изменение: 11.03.2020

Понравилась статья? Поделить с друзьями:
  • Как написать gui на python
  • Как написать gps
  • Как написать gitignore
  • Как написать get запрос
  • Как написать gamemode 1