Pronoun Snippets [HTML - F2U]

MICROWBIRD

Info


Created
4 years, 3 months ago
Creator
MICROWBIRD
Favorites
466

Profile


This code is intended to be useable by FREE and PREMIUM members of toyhou.se
Click the "Display Code" button to toggle the visibility of the code.

If you have any questions or suggestions, feel free to comment!
While it's not required, I would really appriciate it if you would favorite my code if you use it! ^^

Last updated: 01/14/2020


Donate to my Ko-Fi!

  Pronoun Dropdown


This dropdown is a handy little feature that can be added to a character's profile to make it easy to understand how to use their pronouns without having to go to another page or look them up!

Display Code

  Pronoun Reference Table

Pronoun Reference

Subject:  1   laughed at the joke.

Object: They talked to  2   about pets.

Possessive:  3   favorite color is unknown.

Possessive Pronoun: The card is  4  .

Reflexive:  1   think(s) highly of  5  .


1 2 3 4 5 links
He Him His His Himself [1]
She Her Her Hers Herself [1]
They Them Their Theirs Themself [1]
   

Display Code
<div class="container w-auto">
  <div class="card mx-auto">
    <div class="card-header">
      <h1 class="p-1">Pronoun Reference <span class="pull-right"><i class="far fa-info-square"></i></span></h1>

    </div>
    <div class="card-body p-4 mx-3">
      <div class="mx-auto" style="font-size:1.2em;max-width:342px;">
        <p><b>Subject:</b><u><b>&nbsp 1 &nbsp</b></u> laughed at the joke.</p>
        <p><b>Object:</b> They talked to<u><b>&nbsp 2 &nbsp</b></u> about pets.</p>
        <p><b>Possessive:</b><u><b>&nbsp 3 &nbsp</b></u> favorite color is unknown.</p>
        <p><b>Possessive Pronoun:</b> The card is<u><b>&nbsp 4 &nbsp</b></u>.</p>
        <p><b>Reflexive:</b><u><b>&nbsp 1 &nbsp</b></u> think(s) highly of<u><b>&nbsp 5 &nbsp</b></u>.</p>
      </div>
      <hr>
      <div class="table-responsive">
        <table class="table table-hover text-monospace" style="border:none;">
          <tbody>
            <!--Reference number row-->
            <tr style="font-weight:bold;">
              <td>1</td>
              <td>2</td>
              <td>3</td>
              <td>4</td>
              <td>5</td>
              <td>links</td>
            </tr>
            <!--Pronoun rows start-->
            <tr>
              <td>He</td>
              <td>Him</td>
              <td>His</td>
              <td>His</td>
              <td>Himself</td>
              <td><a href="#characterlink" data-toggle="tooltip" data-placement="top" title="Character Name">[1]</a></td>
            </tr>
            <tr>
              <td>She</td>
              <td>Her</td>
              <td>Her</td>
              <td>Hers</td>
              <td>Herself</td>
              <td><a href="#characterlink" data-toggle="tooltip" data-placement="top" title="Character Name">[1]</a></td>
            </tr>
            <tr>
              <td>They</td>
              <td>Them</td>
              <td>Their</td>
              <td>Theirs</td>
              <td>Themself</td>
              <td><a href="#characterlink" data-toggle="tooltip" data-placement="top" title="Character Name">[1]</a></td>
            </tr>
            <!--Duplicate this table row as many times as desired to add additional pronoun sets-->
            <!--
            <tr>
              <td>1</td>
              <td>2</td>
              <td>3</td>
              <td>4</td>
              <td>5</td>
              <td><a href="#characterlink" data-toggle="tooltip" data-placement="top" title="Character Name">[1]</a></td>
            </tr> -->
          </tbody>
        </table>
      </div>
    </div>
  </div>
  <!--Do Not Remove Credits-->
  <div class="pull-right">
    <a href="/5803174.pronoun-snippets-html-ftu-" data-toggle="tooltip" data-placement="left" title="Check out the code here!"><i class="fal fa-link"></i></a>&nbsp;
    <a href="/coldioc" data-toggle="tooltip" data-placement="left" title="Concept by coldioc"><i class="fal fa-star"></i></a>&nbsp;
    <a href="/microwbird" data-toggle="tooltip" data-placement="left" title="Code by MICROWBIRD"><i class="fas fa-feather-alt"></i></a>
  </div>
</div>