0% found this document useful (0 votes)
297 views1 page

Here Are Some Basic Codes To Remember

</b> HTML uses tags enclosed in brackets to format text. Opening tags have a name like <i> for italics and closing tags start with a slash like </i>. Basic tags include <i> for italics, <b> for bold, <u> for underline, and <font> for changing text size or color. Links use <a> tags with an href attribute pointing to a URL. Images use <img> tags with a src attribute for the image file. Multiple tags can be nested to format text in multiple ways.

Uploaded by

Umoru Ahmed
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
297 views1 page

Here Are Some Basic Codes To Remember

</b> HTML uses tags enclosed in brackets to format text. Opening tags have a name like <i> for italics and closing tags start with a slash like </i>. Basic tags include <i> for italics, <b> for bold, <u> for underline, and <font> for changing text size or color. Links use <a> tags with an href attribute pointing to a URL. Images use <img> tags with a src attribute for the image file. Multiple tags can be nested to format text in multiple ways.

Uploaded by

Umoru Ahmed
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

SOME BASIC HTML CODES

) and when **The thing to remember with HTML is that the codes go in brackets ( you are formatting text there needs to be a start and an end code. An end code is signified by a Example:

<>

/ within the brackets.

<i> italics </i>


Code to begin italics Code to end italics

Here are some basic codes to remember:


To italicize text: To bold text:

<i> text </i>

<b> text </b>

To underline text: <u> text </u> To make text a different size: <font size=1> text </font> (the numbers range from 1=smallest to 5=largest) To make text a different color: <font color = red> text </font> (you can substitute different common color names) To make a link to a website:

<a href = http://www.clcillinois.edu> Text to appear linked </a>


(Make sure to include the full URL, including the http:// in quotation marks) To include an image: <img src = graphic.jpg> (Notice no end tag here because you are not manipulating text! BlackBoard will make you search for where your graphic file is located, and will then download it to the BlackBoard server). You can also use multiple codes at once to format text. You just have to make sure to nest the codes, meaning the first code to start is the last one to end. Here is an example of text that you want to be bolded, italicized and blue. <b> <i> <font color= blue> My blue text </font> </i> </b>

You might also like