Editor Arrow Download Open
<!DOCTYPE html> <html> <head> <title>HTML code tag</title> </head> <body> <p>1.) HTML code tag example</p> <code>#include &lt;stdio.h&gt; <br /> void main() <br /> { <br /> clrscr(); <br /> getch(); <br /> } <br /> </code> <p>2.) HTML code tag with &lt;pre&gt; tag example</p> <code> <pre> #include &lt;stdio.h&gt; void main() { clrscr(); getch(); } </pre> </code> </body> </html>
  Preview Arrow