HTML Symbols

Many mathematical, technical, and currency symbols, are not present on a normal keyboard. To add such symbols to an HTML page, you can use the entity name or the entity number (a decimal or a hexadecimal reference) for the symbol.

Example

Display the euro sign, , with an entity name, a decimal, and a hexadecimal value:
<p> I will display &euro; </p>
<p> I will display &#8364;</p>
<p> I will display &#x20AC;</p>
Will display as:

I will display €
I will display €
I will display €

MATH Formula in HTML

Please try to display the following math formula in HTML:

\(...\)
for in-line mathematics:

\( \frac{-b ± \sqrt{b^2-4bc}}{2a} \)

\( \sum\limits_{i=0}^na^i = \frac{a^{n+1}-1}{a-1} (a \neq 1) \)

$$...$$
for displayed mathematics:

$$ \frac{-b ± \sqrt{b^2-4bc}}{2a} $$ $$ \sum\limits_{i=0}^na^i = \frac{a^{n+1}-1}{a-1} (a \neq 1) $$

HTML Multimedia

What is Multimedia?

Multimedia comes in many different formats. It can be almost anything you can hear or see, like images, music, sound, videos, records, films, animations, and more. Web pages often contain multimedia elements of different types and formats.

HTML Video

		<video width="320" height="240" controls>
  		<source src="movie.mp4" type="video/mp4">
  		<source src="movie.ogg" type="video/ogg">
		Your browser does not support the video tag.
		</video>
		

Video Source

HTML Audio

		<audio width="320" height="240" controls>
  		<source src="horse.ogg" type="audio/mp3">
  		<source src="horse.mp3" type="audio/ogg">
		Your browser does not support the audio tag.
		</audio>
		

Audio Source

Playing a YouTube Video in HTML

The easiest way to play videos in HTML is to use YouTube.
		<iframe width="420" height="300" 
			src="https://www.youtube.com/embed/ekr2nIex040">
		</iframe>

			
		

Youtube Video Source

Reference