This user is not visible to guests.

why fellow self-taught coder that learnt coding by looking at other ppl's codes >:)  welcome to the club hehe

YESS z-index and fa-stack are so fun to play around with; def helps to make a code more pretty with the layout!!

as for how to display the code, you:

  1. replace every < to &lt;
  2. replace every > to &gt;
  3. surround the entire code with <pre style="user-select:all">
<pre> keeps the code format and the user-select is self-explanatory!  I like to decorate the <pre> with certain classes.  If you done it right, it should look like this (use the code editor's ctrl+f for this of course)!

<pre class="bg-faded text-muted p-3" style="user-select:all">
&lt;div class="bg-primary p-3 text-light"&gt;
    &lt;p&gt;I am a code you can copy!&lt;/p&gt;
&lt;/div&gt;
</pre>
This user is not visible to guests.