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.

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. Notice the use of the <strong> tag inside the <pre> tag.

			import javax.swing.*;
			public static void main(String[] args) {
			   System.out.println("Fear the turtle");
			}			
		

Java code printed using <p> tags:

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

🐈