This subpage includes all that I had learned about coding.

Main Page

Text Formating

To start off, text formatting allows the change of the format of text by using different codes.

For example:

To add a image and provide the source for image use the code:

<img src="address of the image file" alt="description the image" style="width:#px;height:#px;border:0;"/> <a href="link url"> The link </a>

For example:

coding The link

To add a image with the link attached to it so when it's clicked, it will automatically lead you to the link use the code:

<a href="link url"> <img src="address of the image file" alt="description of the image" style="width:#px;height:#px;border:0;">

After using the code, your image should be able to lead you to the image once clicked.

coding

To add animated image or a gif. You can easily use the code:

<img src="address of the gif file" alt="description the image" style="width:#px;height:#px;border:0;"/>

Coding expert Gif link

In order to make a list of bullet points use the code:

<ul>then skip a line and type <li> for bullet points and close </li>,then after inserting all the needed bullet points, at the end type </ul> to close it off.

In order to make a ordered list use the code:

<ol>then skip a line and type <li> for number points and close </li>,then after inserting all the needed bullet points, at the end type </ol> to close it off.

  1. First thing
  2. Second thing
  3. Third thing

Although this is a incomplete website, to learn more on how to code go to https://www.w3schools.com/ for tutorials.