html formatte code example

Example 1: html grundgerüst

<!DOCTYPE html>
<html lang="de">
  <head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Titel</title>
  </head>
  <body>

  </body>
</html>

Example 2: how to italicize in html

<!--
	You have 2 options
-->
<i>This text is the original italic</i>
<em>This is actually emphasising a phrase, but will do just the same</em>

Example 3: html formatting

<p>Normal Text</p>
<p><b>Bold Text</b></p>
<p><i>Italic Text</i></p>
<p><em>Emphasized Text</em></p>
<p><mark>Marked Text</mark></p>
<p><small>Small Text</small></p>

Tags:

Html Example