codeIT

Sign in

HTML Comment

Html Cemment hepls to reminds you about something in your Html code.
Note
everything within the Comment tag will not be displayed on your browser.

Below is an example of Html comment tag

< ! - - Write your comments here - - >

Video tutorial on Html comment

Html Abbreviation

Html Abbreviation The < abbr > tag defines an abbreviation or an acronym, like "HTML", "CSS", "KATDICT.", "NITDA.", "ICT", "KSTIM".

Example of Html abbreviation code

The code:
Abbr-code
Result of the code above
Abbr-code

Video tutorial on Html abbreviation tag

Html Formating

Html Formating are Html tags that allows you to change the apearance of a text on your webpage.And also is process that allows us to format text to increase its visual appeal

Example of Html Formating tags

  • < b >: The Html< b > element makes a text bold
  • < Strong >: The Html< strong > element defines text with strong importance. The content inside is typically displayed in bold.
  • < i >: The < i > tag is often used to indicate a technical term, a phrase from another language, a thought, a ship name, etc.
  • < sub >: The < sub > element defines 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:
  • < sup >: The < sup > element defines 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, like WWW[1]:

Example of Html abbreviation code

Code example
html-formating-code
Result of the code above:
html-formating-result

Html Quatation

Html Qoutation Html qoutation comprises of < blockquote >, < q > , < cite > Html elements Html elements

Html < blockquote > element

The Html < blockquote > element defines a section that is quoted from another source.

Example of Html Blockguote code

Code example
html-blockquote-code
Result of the code above:
html-blockqoute-result

Html < q > element

The Html < q > tag defines a short quotation.

Example of Html < q > element code

Code example
html-q-code
Result of the code above:
html-q-result

Html < cite > element

The Html < cite > tag defines the title of a creative work (e.g. a book, a poem, a song, a movie, a painting, a sculpture, etc.).

Example of Html < cite > element code

Code example
html-cite-code
Result of the code above:
html-cite-result

Html Colors

Html Colors HTML colors are specified with predefined color names, or with RGB, HEX, HSL, RGBA, or HSLA values.

Example of Html Colors

Red

Blue

Green

Yellow

Indigo

Html images

Html Images The Html < img > tag is used to embed an image in a web page.

It only requires two attributes:

  • Src: It specifies the path to the image
  • Alt: It specifies an alternate text for the image

Example of Html < img > element code

Code example
html-img-code
Result of the code above:
html-img-result