C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
HTML code tagHTML <code> tag is used to represent computer code. It is a phrase tag which defines a piece of computer code. By default, it is displayed in the browser's default monospace font (also known as fixed-width font). List of HTML phrase tags
HTML phrase tags example including code tag<em>It is inside em tag.</em><br> <strong>It is inside strong tag.</strong><br> <dfn>It is inside dfn tag.</dfn><br> <code>It is inside code tag.</code><br> <samp>It is inside samp tag.</samp><br> <kbd>It is inside kbd tag.</kbd><br> <var>It is inside var tag.</var> Output: It is inside em tag.It is inside strong tag. It is inside dfn tag. It is inside code tag. It is inside samp tag. It is inside kbd tag. It is inside var tag. Supporting Browsers
Next TopicHTML col tag
|