This document presents some frequently used tags. for the development of html files. For example, the text you are currently reading is enclosed in <p> </p> tags.
This line illustrates that we can bold easily with the <b> tag.
The following Java code is displayed using the <code> tag:
/* Java code presented using the code tag */
import javax.swing.*;
public static void main(String[] args) {
System.out.println("Hello World");
}
Now we are illustrating how we can create superscripts (10th) or subscript (log 2 n)
Showing how to generate quotes: To be or not to be
Previous java code printed using the pre tag:
/* Java code presented using the code tag */
import javax.swing.*;
public static void main(String[] args) {
System.out.println("Hello World");
}
This line has been displayed using the <em> tag
This line has been displayed using the <strong> tag
This line has been displayed using the <b> tag
This line has been displayed using the <i> tag