Introduction(h1)

Overview(h2)

Conclusion(h3)

References(h4)

Appendix A(h5)
Appendix B(h6)

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.

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

Java code printed using the pre tags:

			/* Java code presented using the pre tag */
			import javax.swing.*;
			public static void main(String[] args) {
				System.out.println("Hello World");
			}			
		

Java code printed using p tags:

/* Java code presented using the pre 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