<!DOCTYPE html>
  <html lang="en">
    <head>
      <meta charset="UTF-8">
      <meta http-equiv="X-UA-Compatible" content="IE=edge">
      <meta name="viewport" content="width=device-width, initial-scale=1.0">
      <title>Example 1: R.I.B.H.U. Academy</title>
    </head>
    <body  bgcolor="red">
      <div  style="background-color: BlanchedAlmond;">
        <!-- HTML COMMENTS are written like this. -->
        <!-- You can remove   bgcolor="red" and   style="background-color: BlanchedAlmond;" attributes and then, you will see result without colors. -->
        <!-- You can write explanation about your scripts/code for HTML inside these opening and closing COMMENT TAGS -->
        <!-- ONLY COLORS ARE USED IN THIS PAGE by us (the website), and other style properties are added by your browser, for example, font-size, font-weight, font-family, etc. are controlled by browser, unless WE (the website) insert STYLE RULES either EMBEDDED or INSERTED by external CSS file(s). -->
        <!-- Following HTML TAGS are BLOCK-LEVEL elements, and you should not insert or place any one of these inside another HTML tag, that is, <h1> <h2> <h3> <h4> <h5> <h6> <p> <pre> -->
        <!-- <blockquote> and <div> tags are CONTAINERs in which you can place / insert any HTML tags. -->

<h1>Example 1: R.I.B.H.U. Academy</h1>

<h2>Example 1: R.I.B.H.U. Academy</h2>

<h3>Example 1: R.I.B.H.U. Academy</h3>

<h4>Example 1: R.I.B.H.U. Academy</h4>

<h5>Example 1: R.I.B.H.U. Academy</h5>
<h6>Example 1: R.I.B.H.U. Academy</h6>

<p>Example 1: R.I.B.H.U. Academy</p>

<pre>Example 1: R.I.B.H.U. Academy</pre>
<blockquote>Example 1: R.I.B.H.U. Academy</blockquote>

      </div>
    </body>
  </html>

<!-- This line is outside <div> </div> container, and therefore, you see that it is outside creamish box. You can copy all of these text and paste into TEXT-EDITOR, e.g., NOTEPAD or CODE-EDITOR, e.g. VSCode save as FILENAME.html. And You will see the result in browser. -->