Actions

Work Header

Rating:
Archive Warning:
Fandom:
Additional Tags:
Language:
English
Collections:
Fic In A Box 2023
Stats:
Published:
2023-10-24
Completed:
2023-10-25
Words:
10,188
Chapters:
4/4
Comments:
4
Kudos:
35
Bookmarks:
15
Hits:
666

The Case of the Clickable Murdle

Summary:

A template for making a playable Murdle with an interactive grid and cards.

Notes:

This was cobbled together using Grayswandir's Murdle Skin for the aesthetic and the grid, and La_Temperanza's Choose Your Own Adventure Skin for the interactive elements.
Additional templates (larger grids, other aesthetic elements, etc...) and further details on how to do the html are available in their respective templates.

(See the end of the work for other works inspired by this one.)

Chapter 1: Example

Chapter Text

Your introductory narrative goes here.


Each suspect brought one weapon to one location with one motive, but only one was the culprit (today).

Evidence

  • Here's a clue.
  • And another.
  • You can put as many clues as you like here.
  • You can even include coded messages: I NKWO WOH ETH ILKELR SI.
  • And you can put the final evidence of the actual crime in red.


🔎

🧑

Suspect 1 Name

A little blurb about them.

stats • more stats

🧛

Suspect 2 Name

A little blurb about them.

stats • more stats

🧙

Suspect 3 Name

A little blurb about them.

stats • more stats

💁

Suspect 4 Name

A little blurb about them.

stats • more stats

💰

Motive 1

Description goes here.

Stats • More stats

🤝

Motive 2

Description goes here.

Stats • More stats

🔫

Motive 3

Description goes here.

Stats • More stats

🗣

Motive 4

Description goes here.

Stats • More stats

🔪

Weapon 1

Description goes here.

Stats • More stats

🍸

Weapon 2

Description goes here.

Stats • More stats

💣

Weapon 3

Description goes here.

Stats • More stats

👊

Weapon 4

Description goes here.

Stats • More stats

🌳

Location 1

Description goes here.

Stats

🍽️

Location 2

Description goes here.

Stats

🏊

Location 3

Description goes here.

Stats

🛋️

Location 4

Description goes here.

Stats

* 🧑 🧛 🧙 💁 💰 🤝 🔫 🗣 🌳 🍽️ 🏊 🛋️
🔪
🍸
💣
👊
🌳
🍽️
🏊
🛋️
💰
🤝
🔫
🗣

(Click the images around the board for more information about each suspect/weapon/location, and to fill out the grid, click once in a square for an X and a second time for a check.)

Chapter 2: CSS

Chapter Text

The first step in creating your own interactive Murdle is creating a new work skin and copying all of the following CSS into it.

Adapted from Grayswandir's Murdle Work Skin:

#workskin .main {
background: #fbfbf9;
color: #000000;
font-family: "Courier New", Courier;
font-size: 18px;
line-height: 1.7;
border: 1px black solid;
border-bottom: 1px black solid;
padding-top: 1.5em;
padding-bottom: 1em;
padding-right: 1.3em;
padding-left: 1em;
border-radius: 10px;
}

#workskin .title {
font-family: "Courier New", Courier;
font-weight: bold;
color: #A30B37;
text-transform: uppercase;
}

#workskin .case-title {
font-family: "Courier New", Courier;
font-size: 26px;
font-weight: bold;
color: #A30B37;
line-height: 1.5;
text-transform: uppercase;
}

#workskin .subtitle {
font-family: "Courier New", Courier;
font-weight: bold;
font-size: 18px;
color: #A30B37;
line-height: 1.5;
text-transform: uppercase;
}

#workskin .small-text {
font-size: 12px;
}

#workskin .cardback-small {
background: #A30B37;
color: #fbfbf9;
border: 5px black solid;
border-bottom: 5px black solid;
padding-top: 1em;
padding-bottom: 1em;
padding-right: 1em;
padding-left: 1em;
border-radius: 10px;
width: 105px;
height: 190px;
margin: auto;
float: left;
}

#workskin .cardback-medium {
background: #A30B37;
color: #fbfbf9;
border: 5px black solid;
border-bottom: 5px black solid;
padding-top: 1em;
padding-bottom: 1em;
padding-right: 1em;
padding-left: 1em;
border-radius: 10px;
width: 200px;
height: 350px;
margin: auto;
float: left;
}

#workskin .cardback-large {
background: #A30B37;
color: #fbfbf9;
border: 5px black solid;
border-bottom: 5px black solid;
padding-top: .5em;
padding-bottom: .5em;
padding-right: 1.5em;
padding-left: 1.5em;
border-radius: 10px;
width: 300px;
max-width: 85%;
min-height: 500px;
margin: auto;
}

#workskin .card-small-emoji {
font-family: "Courier New", Courier;
color: transparent;
font-weight: bold;
font-size: 90px;
line-height: 190px;
display: block;
text-align: center;
margin: auto;
text-shadow: 0 0 0 #fff5e2;
}

#workskin .card-med-emoji {
font-family: "Courier New", Courier;
color: transparent;
font-weight: bold;
font-size: 150px;
line-height: 350px;
display: block;
text-align: center;
margin: auto;
text-shadow: 0 0 0 #fff5e2;
}

#workskin .card-small {
background: #ffffff;
color: black;
font-size: 18px;
font-family: "Courier New", Courier;
line-height: 18px;
display: block;
border: 5px black solid;
border-bottom: 5px black solid;
padding-top: 1em;
padding-bottom: 1em;
padding-right: 1em;
padding-left: 1em;
border-radius: 10px;
width: 105px;
height: 190px;
margin: auto;
float: left;
}

#workskin .card-small-name {
font-family: "Courier New", Courier;
font-size: 18px;
text-align: center;
color: #000000;
font-weight: bold;
text-transform: uppercase;
}

#workskin .card-emoji {
font-family: "Courier New", Courier;
font-size: 65px;
text-align: center;
color: transparent;
font-weight: bold;
margin: auto;
text-shadow: 0 0 0 #000000;
}

#workskin .card {
background: #ffffff;
color: black;
font-size: 18px;
font-family: "Courier New", Courier;
line-height: 1.7;
display: block;
border: 5px black solid;
border-bottom: 5px black solid;
padding-top: .5em;
padding-bottom: .5em;
padding-right: .5em;
padding-left: .5em;
border-radius: 10px;
width: 230px;
height: 350px;
margin: auto;
float: left;
}

#workskin .card-name {
font-family: "Courier New", Courier;
font-size: 22px;
text-align: center;
color: #000000;
font-weight: bold;
text-transform: uppercase;
}

#workskin .card-text {
font-family: "Courier New", Courier;
font-size: 18px;
text-align: center;
color: black;
}

#workskin .card-stats {
font-family: "Courier New", Courier;
font-size: 18px;
text-align: center;
color: black;
font-weight: bold;
text-transform: uppercase;
}

#workskin .card-large {
background: #ffffff;
color: black;
font-size: 18px;
font-family: "Courier New", Courier;
line-height: 1.7;
display: block;
border: 5px black solid;
border-bottom: 5px black solid;
padding-top: .5em;
padding-bottom: .5em;
padding-right: 1.5em;
padding-left: 1.5em;
border-radius: 10px;
width: 300px;
max-width: 85%;
min-height: 500px;
margin: auto;
}

#workskin .card-large-text {
font-family: "Courier New", Courier;
font-size: 18px;
color: black;
text-align: left;
padding-right: .2em;
padding-left: 1.2em;
}

#workskin .card-reverse {
font-family: "Courier New", Courier;
color: transparent;
font-weight: bold;
font-size: 90px;
display: block;
text-align: right;
margin: auto;
}

#workskin table.card-smalltable {
background: #fbfbf9;
color: black;
font-family: Courier;
text-align: center;
font-size: 18px;
line-height: 1.7;
border-collapse: collapse;
width: 490px;
max-width: 85%;
margin: auto;
}

#workskin table.cards {
background: #fbfbf9;
color: black;
font-family: Courier;
text-align: center;
font-size: 18px;
line-height: 1.7;
border-collapse: collapse;
width: 715px;
max-width: 85%;
margin: auto;
}

#workskin td.card-med {
padding-top: 6em;
padding-bottom: 6em;
padding-right: 6em;
padding-left: 6em;
}

#workskin .divider {
position: relative;
float: left;
padding-top: .2em;
padding-bottom: .2em;
padding-right: .2em;
padding-left: .2em;
border: none;
margin: auto;
}

#workskin .evidence {
background: #fff5e2;
color: black;
border: 5px black solid;
border-bottom: 5px black solid;
font-family: "Courier New", Courier;
padding-top: 1em;
padding-bottom: 1em;
padding-right: 1.5em;
padding-left: 1.5em;
line-height: 1.7;
border-radius: 10px;
font-size: 18px;
font-weight: bold;
width: 85%;
margin: auto;
}

#workskin .notebook {
background: #fff5e2;
color: black;
border: 5px black solid;
border-bottom: 5px black solid;
font-family: "Courier New", Courier;
padding-top: .3em;
padding-bottom: 1.5em;
padding-right: 1.5em;
padding-left: 1.5em;
line-height: 1.7;
border-radius: 10px;
display: block;
font-size: 18px;
width: 85%;
max-width: 600px;
margin: auto;
}

#workskin .notebook-title {
text-align: center;
font-family: "Courier New", Courier;
font-weight: bold;
font-size: 25px;
color: #A30B37;
line-height: 1.7;
text-transform: uppercase;
}

#workskin table.grid-small {
background: #fbfbf9;
color: black;
font-family: Courier;
text-align: center;
font-size: 18px;
line-height: 1.7;
border-collapse: collapse;
width: 85%;
max-width: 305px;
}

#workskin table.grid-med {
background: #fbfbf9;
color: black;
font-family: Courier;
text-align: center;
font-size: 18px;
line-height: 1.7;
border-collapse: collapse;
width: 85%;
max-width: 450px;
}

#workskin table.grid-large {
background: #fbfbf9;
color: black;
font-family: Courier;
text-align: center;
font-size: 18px;
line-height: 1.7;
border-collapse: collapse;
width: 85%;
max-width: 550px;
}

#workskin td.grid {
background: #fbfbf9;
color: black;
font-family: Courier;
text-align: center;
font-size: 18px;
line-height: 1.7;
border: 2px solid;
border-collapse: collapse;
width: 30px;
height: 30px;
}

#workskin td.grid-none {
background: #fff5e2;
color: #fff5e2;
font-family: Courier;
text-align: center;
font-size: 18px;
line-height: 1.7;
border: none;
border-collapse: collapse;
width: 30px;
height: 30px;
}

#workskin td.corner {
background: #fff5e2;
color: #fff5e2;
font-family: Courier;
text-align: center;
font-size: 18px;
line-height: 1.7;
border-collapse: collapse;
width: 30px;
height: 30px;
border: none;
}

#workskin td.emoji {
background: #fff5e2;
color: transparent;
font-family: Courier;
text-align: center;
font-size: 18px;
line-height: 1.7;
border-collapse: collapse;
width: 30px;
height: 30px;
border: none;
text-shadow: 0 0 0 #000000;
}

#workskin table.grid2-small {
background: #fbfbf9;
color: black;
font-family: Courier;
text-align: center;
font-size: 18px;
line-height: 1.7;
border-collapse: collapse;
width: 85%;
max-width: 305px;
}

#workskin table.grid2-med {
background: #fbfbf9;
color: black;
font-family: Courier;
text-align: center;
font-size: 18px;
line-height: 1.7;
border-collapse: collapse;
width: 85%;
max-width: 450px;
}

#workskin table.grid2-large {
background: #fbfbf9;
color: black;
font-family: Courier;
text-align: center;
font-size: 18px;
line-height: 1.7;
border-collapse: collapse;
width: 85%;
max-width: 550px;
}

#workskin td.grid2 {
background: #ffffff;
color: black;
font-family: Courier;
text-align: center;
font-size: 18px;
line-height: 1.7;
border: 2px solid;
border-collapse: collapse;
width: 30px;
height: 30px;
}

#workskin td.grid2-none {
background: #fbfbf9;
color: #fbfbf9;
font-family: Courier;
text-align: center;
font-size: 18px;
line-height: 1.7;
border: none;
border-collapse: collapse;
width: 30px;
height: 30px;
}

#workskin td.corner2 {
background: #fbfbf9;
color: #fbfbf9;
font-family: Courier;
text-align: center;
font-size: 18px;
line-height: 1.7;
border-collapse: collapse;
width: 30px;
height: 30px;
border: none;
}

#workskin td.emoji2 {
background: #fbfbf9;
color: transparent;
font-family: Courier;
text-align: center;
font-size: 18px;
line-height: 1.7;
border-collapse: collapse;
width: 30px;
height: 30px;
border: none;
text-shadow: 0 0 0 #000000;
}

#workskin .redtext {
color: #A30B37;
}

#workskin .chess {
display: block;
line-height: 1.7;
word-break: break-word;
font-family: "Courier New", Courier;
text-align: center;
font-weight: bold;
font-size: 40px;
border: none;
}

#workskin .cardhintback {
background: #000000;
color: #ffffff;
font-size: 18px;
line-height: 18px;
display: block;
font-family: "Courier New", Courier;
border: 5px white solid;
border-bottom: 5px white solid;
outline: 2px black solid;
padding-top: 1em;
padding-bottom: 1em;
padding-right: 1em;
padding-left: 1em;
border-radius: 10px;
width: 105px;
height: 190px;
margin: auto;
}

#workskin .card-hint-back-emoji {
font-family: "Courier New", Courier;
color: transparent;
font-weight: bold;
font-size: 90px;
line-height: 190px;
display: block;
text-align: center;
margin: auto;
text-shadow: 0 0 0 #ffffff;
}

#workskin .card-hint-back-emoji2 {
font-family: "Courier New", Courier;
color: transparent;
font-weight: bold;
font-size: 90px;
display: block;
text-align: center;
margin: auto;
text-shadow: 0 0 0 #ffffff;
}

#workskin .card-hint-back-text {
font-family: "Courier New", Courier;
font-size: 18px;
text-align: center;
color: #ffffff;
font-weight: bold;
text-transform: uppercase;
}

#workskin .card-hint-large {
background: #000000;
color: #ffffff;
font-size: 18px;
font-family: "Courier New", Courier;
line-height: 1.7;
display: block;
border: 5px white solid;
border-bottom: 5px white solid;
outline: 2px black solid;
padding-top: .5em;
padding-bottom: .5em;
padding-right: 1.5em;
padding-left: 1.5em;
border-radius: 10px;
width: 300px;
max-width: 85%;
min-height: 500px;
margin: auto;
}

#workskin .card-hint-large-text {
font-family: "Courier New", Courier;
font-size: 18px;
color: #ffffff;
text-align: left;
padding-right: .2em;
padding-left: 1.2em;
}

#workskin .NavyColor {
color: transparent;
text-shadow: 0 0 0 #000080;
}

#workskin .BlueColor {
color: transparent;
text-shadow: 0 0 0 #016FB9;
}

#workskin .MaroonColor {
color: transparent;
text-shadow: 0 0 0 #AF3B6E;
}

#workskin .AzureColor {
color: transparent;
text-shadow: 0 0 0 #007FFF;
}

#workskin .SlateColor {
color: transparent;
text-shadow: 0 0 0 #708090;
}

#workskin .TuscanyColor {
color: transparent;
text-shadow: 0 0 0 #CDA2AB;
}

#workskin .AubergineColor {
color: transparent;
text-shadow: 0 0 0 #693B58;
}

#workskin .RaspberryColor {
color: transparent;
text-shadow: 0 0 0 #E30B5D;
}

#workskin .ChampagneColor {
color: transparent;
text-shadow: 0 0 0 #F4C97A;
}

#workskin .VerdigrisColor {
color: transparent;
text-shadow: 0 0 0 #48A9A6;
}

#workskin .GlaucousColor {
color: transparent;
text-shadow: 0 0 0 #6082B6;
}

#workskin .CrimsonColor {
color: transparent;
text-shadow: 0 0 0 #BA181B;
}

#workskin .GreyColor {
color: transparent;
text-shadow: 0 0 0 #8F8F8F;
}

#workskin .MangoColor {
color: transparent;
text-shadow: 0 0 0 #F08A4B;
}

#workskin .CoffeeColor {
color: transparent;
text-shadow: 0 0 0 #322214;
}

#workskin .RoseColor {
color: transparent;
text-shadow: 0 0 0 #FF66CC;
}

#workskin .PineColor {
color: transparent;
text-shadow: 0 0 0 #097A74;
}

#workskin .VioletColor {
color: transparent;
text-shadow: 0 0 0 #A54CFF;
}

#workskin .LavenderColor {
color: transparent;
text-shadow: 0 0 0 #967BB6;
}

#workskin .HoneyColor {
color: transparent;
text-shadow: 0 0 0 #F6AE2D;
}

#workskin .SaffronColor {
color: transparent;
text-shadow: 0 0 0 #F4C430;
}

#workskin .TangerineColor {
color: transparent;
text-shadow: 0 0 0 #F28500;
}

#workskin .CopperColor {
color: transparent;
text-shadow: 0 0 0 #B87333;
}

#workskin .AmaranthColor {
color: transparent;
text-shadow: 0 0 0 #B6244F;
}

#workskin .ApplegreenColor {
color: transparent;
text-shadow: 0 0 0 #66B447;
}

#workskin .CeladonColor {
color: transparent;
text-shadow: 0 0 0 #ACE1AF;
}

#workskin .EmeraldColor {
color: transparent;
text-shadow: 0 0 0 #33CA7F;
}

#workskin .RuleanColor {
color: transparent;
text-shadow: 0 0 0 #1DACD6;
}

#workskin .LapisColor {
color: transparent;
text-shadow: 0 0 0 #125E8A;
}

#workskin .AureolinColor {
color: transparent;
text-shadow: 0 0 0 #F2DB00;
}

#workskin .VermillionColor {
color: transparent;
text-shadow: 0 0 0 #E34234;
}

#workskin .MauveColor {
color: transparent;
text-shadow: 0 0 0 #E0B0FF;
}

#workskin .EminenceColor {
color: transparent;
text-shadow: 0 0 0 #6C3082;
}

#workskin .TanColor {
color: transparent;
text-shadow: 0 0 0 #FFF5E2;
}

#workskin .BlackColor {
color: transparent;
text-shadow: 0 0 0 #000000;
}

#workskin .WhiteColor {
color: transparent;
text-shadow: 0 0 0 #FFFFFF;
}

#workskin .Color {
color: #000000;
}

#workskin .noMargin {
margin: 0;
}

#workskin .floatleft {
float: left;
color: transparent;
}

#workskin .clearleft {
clear: left;
}

Adapted from La_Temperanza's Choose Your Own Adventure Work Skin:

#workskin .storycontainer {
margin: 0 auto;
overflow: hidden;
width: 100%;
height: 500px;
}

#workskin .page {
margin-top: 25px;
height: 500px;
overflow-y: auto;
}

#workskin .storycontainer-small {
margin: 0 auto;
overflow: hidden;
height: 30px;
}

#workskin .page-small {
margin-bottom: 1px;
height: 30px;
overflow-y: hidden;
}

In addition, the text boxes I'm using for this guide were adapted from the ones used for Grayswandir's Murdle Work Skin Tutorial (but they're not actually used in the Murdle itself):

#workskin .textbox-small {
background: #fbfbf9;
color: #000000;
font-family: "Courier New", Courier;
font-size: 12px;
line-height: 1.7;
border: 1px black solid;
border-bottom: 1px black solid;
padding-top: 1em;
padding-bottom: 1em;
padding-right: 1em;
padding-left: 1em;
width: 85%;
max-width: 700px;
margin: 20px;
}

#workskin .textbox-large {
background: #fbfbf9;
color: #000000;
font-family: "Courier New", Courier;
font-size: 18px;
line-height: 1.7;
border: 1px black solid;
border-bottom: 1px black solid;
padding-top: 1em;
padding-bottom: 1em;
padding-right: 1em;
padding-left: 1em;
width: 85%;
max-width: 700px;
margin: 20px;
}

Chapter 3: HTML

Chapter Text

Once you've created a work skin and have the CSS all copied and pasted, then you can get to the real work of putting together the HTML. That's what will go into the chapter text box for the new work on AO3, just make sure it's in HTML mode rather than Rich Text.

Set Up

So that the entire work is formatted like a Murdle, you will need the whole thing to be inside a main container like so:

<div class="main">

[Everything, both text and html, should go in here. That includes the narrative, evidence, puzzle grid, and cards]

</div>

Evidence

You can write the narrative like you would any other fic.

When you're ready to present the evidence, that goes in its own little box:

<div class="evidence">

<div class="card-small-name">
<p class="noMargin">
<u><span class="BlackColor">Evidence</span></u>
</p></div>

<ul class="noMargin">
<li>[This is how you create a bulleted list of clues.]</li>
<li>[You can put as many clues as you like here.]</li>
<li>[Notice the bold tags around the coded message: ]<b>I NKWO WOH ETH ILKELR SI</b>.</li>
<li><span class="CrimsonColor"><b>[This line will appear in red.]</b></span></li>
</ul>

</div>

Cards

I put the cards and gird side by side in one large table, so you'll want to set that up first. Alternatively, Grayswandir provides a bunch of alternate ways to organize the cards in their tutorial.

<table>
<tbody>
<tr>
<td class="card-med">

[All of the code for all of the cards goes in here.

The "card-med" class pads the cell so that the card isn't in the top left corner (you may need to adjust the padding a little in the work skin CSS to get it in the optimal position for your puzzle)]

</td>
<td>

[All of the code for the grid goes in here]

</td>
</tr>
</tbody>
</table>

If you want to have one card that "flips over" to reveal information about each of the suspects/weapons/locations/motives/etc... rather than putting them all side by side, then you will also need to put all of the cards inside a "story container" adapted from La_Temperanza's Choose Your Own Adventure work skin, and make each card its own "page".

<div class="storycontainer">

<div class="page">

[The first card, probably the card back, goes in here]

</div>

<div class="page">

[The next card goes in here]

</div>

<div class="page">

[You should have one page for each card]

</div>

Inside each page, you can then put the code for each card, starting with the card back.

<a name="cardback" rel="nofollow" id="cardback"></a>

<div class="divider">
<div class="cardback-medium">
<table><tbody><tr><td>
<div class="card-med-emoji">
<span class="TanColor">🔎</span>
</div>
</td></tr></tbody></table>
</div>
</div>

You will have to customize the code for the card fronts with information about each of the suspects/weapons/locations/motives/etc...

<a name="[pagename]" rel="nofollow" id="[pagename]"></a>

<div class="divider"><div class="card">
<table><tbody><tr><td>

<div class="card-emoji">
<p class="noMargin"><span class="BlackColor">🧑</span></p>
</div>

<div class="card-small-name">
<p class="noMargin"><span class="BlackColor">[Card Name]</span></p>
</div>

<div class="card-text">
<p>[Description]</p>
</div>

<div class="card-stats">
<p class="noMargin">[Stats] • [Stats]</p>
</div>

</td></tr></tbody></table>
</div></div>

To change the color of the emoji, change the class of <span class="BlackColor"> to the desired color - there are a lot of options provided in the CSS.

The Grid

To make the grid interactive, you have to put a little story container inside each square, with a page for each icon. Make sure each square has a unique number.

<div class="storycontainer-small">

<div class="page-small">
<a name="sq[1]blank" href="#sq[1]x" rel="nofollow" id="sq[1]blank">⬜</a>
</div>

<div class="page-small">
<a name="sq[1]x" href="#sq[1]check" rel="nofollow" id="sq[1]x">❌</a>
</div>

<div class="page-small">
<a name="sq[1]check" href="#sq[1]blank" rel="nofollow" id="sq[1]check">✅</a>
</div>

</div>

Grayswandir has provided html templates for a variety of different grid types and sizes. Here's the basic grid structure that I used.

<table class="grid-small">
<tbody>
<tr>
<td class="corner">*</td>
<td class="emoji2">
<a href="#[cardsuspect1]" rel="nofollow">
<span title="[Suspect 1]" class="BlackColor">🧑</span>
</a>
</td>
<td class="emoji2"> <a href="#[cardsuspect2]" rel="nofollow">
<span title="[Suspect 2]" class="BlackColor">🧑</span>
</a>
</td>
<td class="emoji2"> <a href="#[cardsuspect3]" rel="nofollow">
<span title="[Suspect 3]" class="BlackColor">🧑</span>
</a>
</td>
<td class="emoji2"> <a href="#[cardmotive1]" rel="nofollow">
<span title="[Motive 1]" class="SaffronColor">💰</span>
</a>
</td>
<td class="emoji2"> <a href="#[cardmotive2]" rel="nofollow">
<span title="[Motive 2]" class="SaffronColor">💰</span>
</a>
</td>
<td class="emoji2"> <a href="#[cardmotive3]" rel="nofollow">
<span title="[Motive 3]" class="SaffronColor">💰</span>
</a>
</td>
<td class="emoji2"> <a href="#[cardlocation1]" rel="nofollow">
<span class="ApplegreenColor" title="[Location 1]">🌳</span>
</a>
</td>
<td class="emoji2"> <a href="#[cardlocation2]" rel="nofollow">
<span class="ApplegreenColor" title="[Location 2]">🌳</span>
</a>
</td>
<td class="emoji2"> <a href="#[cardlocation3]" rel="nofollow">
<span class="ApplegreenColor" title="[Location 3]">🌳</span>
</a>
</td>
</tr>

<tr>
<td class="emoji2"> <a href="#[cardweapon1]" rel="nofollow">
<span class="CrimsonColor" title="[Weapon 1]">🔪</span>
</a>
</td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
</tr>
<tr>
<tr>
<td class="emoji2"> <a href="#[cardweapon2]" rel="nofollow">
<span class="CrimsonColor" title="[Weapon 2]">🔪</span>
</a>
</td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
</tr>
<tr>
<tr>
<td class="emoji2"> <a href="#[cardweapon3]" rel="nofollow">
<span class="CrimsonColor" title="[Weapon 3]">🔪</span>
</a>
</td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
</tr>
<tr>
<td class="emoji2"> <a href="#[cardlocation1]" rel="nofollow"> <span class="ApplegreenColor" title="[Location 1]">🌳</span> </a> </td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
</tr>
<tr>
<td class="emoji2"> <a href="#[cardlocation2]" rel="nofollow"> <span class="ApplegreenColor" title="[Location 2]">🌳</span> </a> </td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
</tr>
<tr>
<td class="emoji2"> <a href="#[cardlocation3]" rel="nofollow"> <span class="ApplegreenColor" title="[Location 3]">🌳</span> </a> </td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
</tr>
<tr>
<td class="emoji2"> <a href="#[cardmotive1]" rel="nofollow"> <span title="[Motive 1]" class="SaffronColor">💰</span> </a> </td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
</tr>
<tr>
<td class="emoji2"> <a href="#[cardmotive2]" rel="nofollow"> <span title="[Motive 2]" class="SaffronColor">💰</span> </a> </td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
</tr>
<tr>
<td class="emoji2"> <a href="#[cardmotive3]" rel="nofollow"> <span title="[Motive 3]" class="SaffronColor">💰</span> </a> </td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
<td class="grid-none"></td>
</tr>
</tbody>
</table>

Wrap Up

When you're done, make sure you still have a div tag at the end to close the main tag from the beginning.

</div>

Go to the next chapter to see all the pieces together in a form you can copy-paste to use as a template for your own Murdle.

Chapter 4: HTML Template

Chapter Text

If you would prefer to just copy and paste the whole thing and tinker with it from there, this is the entire code for the example in chapter 1:

<div class="main">

<p>Your introductory narrative goes here.</p>

<p><br />
</p>

<p>Each suspect brought one weapon to one location with one motive, but only one was the culprit (today).</p><div class="evidence">
<div class="card-small-name">

<p class="noMargin">
<u><span class="BlackColor">Evidence</span></u>
</p></div>
<ul class="noMargin">
<li>Here's a clue.</li>
<li>And another.</li>
<li>You can put as many clues as you like here.</li>
<li>You can even include coded messages: <b>I NKWO WOH ETH ILKELR SI</b>.</li>
<li><span class="CrimsonColor"><b>And you can put the final evidence of the actual crime in red.</b></span></li>
</ul>
</div>

<p><br />
</p><table>
<tbody>
<tr>
<td class="card-med">
<div class="storycontainer">
<div class="page"><a name="cardback" rel="nofollow" id="cardback"></a>
<div class="divider"><div class="cardback-medium">
<table><tbody><tr><td><div class="card-med-emoji"><span class="TanColor">🔎</span></div></td></tr></tbody></table>
</div></div>
</div>

<div class="page"><a name="cardsus1" rel="nofollow" id="cardsus1"></a>
<div class="divider"><div class="card">
<table><tbody><tr><td>
<div class="card-emoji">

<p class="noMargin"><span class="BlackColor">🧑</span></p></div>
<div class="card-small-name">

<p class="noMargin"><span class="BlackColor">Suspect 1 Name</span></p></div>

<div class="card-text">

<p>A little blurb about them.</p></div>
<div class="card-stats">

<p class="noMargin">stats • more stats</p></div>

</td></tr></tbody></table>
</div></div>
</div>

<div class="page"><a name="cardsus2" rel="nofollow" id="cardsus2"></a>
<div class="divider"><div class="card">
<table><tbody><tr><td>
<div class="card-emoji">

<p class="noMargin"><span class="BlackColor">🧛</span></p></div>
<div class="card-small-name">

<p class="noMargin"><span class="BlackColor">Suspect 2 Name</span></p></div>

<div class="card-text">

<p>A little blurb about them.</p></div>
<div class="card-stats">

<p class="noMargin">stats • more stats</p></div>

</td></tr></tbody></table>
</div></div>
</div>

<div class="page"><a name="cardsus3" rel="nofollow" id="cardsus3"></a>
<div class="divider"><div class="card">
<table><tbody><tr><td>
<div class="card-emoji">

<p class="noMargin"><span class="BlackColor">🧙</span></p></div>
<div class="card-small-name">

<p class="noMargin"><span class="BlackColor">Suspect 3 Name</span></p></div>

<div class="card-text">

<p>A little blurb about them.</p></div>
<div class="card-stats">

<p class="noMargin">stats • more stats</p></div>

</td></tr></tbody></table>
</div></div>
</div>

<div class="page"><a name="cardsus4" rel="nofollow" id="cardsus4"></a>
<div class="divider"><div class="card">
<table><tbody><tr><td>
<div class="card-emoji">

<p class="noMargin"><span class="BlackColor">💁</span></p></div>
<div class="card-small-name">

<p class="noMargin"><span class="BlackColor">Suspect 4 Name</span></p></div>

<div class="card-text">

<p>A little blurb about them.</p></div>
<div class="card-stats">

<p class="noMargin">stats • more stats</p></div>

</td></tr></tbody></table>
</div></div>
</div>

<div class="page"><a name="cardmot1" rel="nofollow" id="cardmot1"></a>
<div class="divider"><div class="card">
<table><tbody><tr><td>
<div class="card-emoji">

<p class="noMargin"><span class="SaffronColor">💰</span></p></div>
<div class="card-small-name">

<p class="noMargin"><span class="BlackColor">Motive 1</span></p></div>

<div class="card-text">

<p>Description goes here.</p></div>
<div class="card-stats">

<p class="noMargin">Stats • More stats</p></div>

</td></tr></tbody></table>
</div></div>
</div>

<div class="page"><a name="cardmot2" rel="nofollow" id="cardmot2"></a>
<div class="divider"><div class="card">
<table><tbody><tr><td>
<div class="card-emoji">

<p class="noMargin"><span class="SaffronColor">🤝</span></p></div>
<div class="card-small-name">

<p class="noMargin"><span class="BlackColor">Motive 2</span></p></div>

<div class="card-text">

<p>Description goes here.</p></div>
<div class="card-stats">

<p class="noMargin">Stats • More stats</p></div>

</td></tr></tbody></table>
</div></div>
</div>

<div class="page"><a name="cardmot3" rel="nofollow" id="cardmot3"></a>
<div class="divider"><div class="card">
<table><tbody><tr><td>
<div class="card-emoji">

<p class="noMargin"><span class="SaffronColor">🔫</span></p></div>
<div class="card-small-name">

<p class="noMargin"><span class="BlackColor">Motive 3</span></p></div>

<div class="card-text">

<p>Description goes here.</p></div>
<div class="card-stats">

<p class="noMargin">Stats • More stats</p></div>

</td></tr></tbody></table>
</div></div>
</div>

<div class="page"><a name="cardmot4" rel="nofollow" id="cardmot4"></a>
<div class="divider"><div class="card">
<table><tbody><tr><td>
<div class="card-emoji">

<p class="noMargin"><span class="SaffronColor">🗣</span></p></div>
<div class="card-small-name">

<p class="noMargin"><span class="BlackColor">Motive 4</span></p></div>

<div class="card-text">

<p>Description goes here.</p></div>
<div class="card-stats">

<p class="noMargin">Stats • More stats</p></div>

</td></tr></tbody></table>
</div></div>
</div>

<div class="page"><a name="cardwep1" rel="nofollow" id="cardwep1"></a>
<div class="divider"><div class="card">
<table><tbody><tr><td>
<div class="card-emoji">

<p class="noMargin"><span class="CrimsonColor">🔪</span></p></div>
<div class="card-small-name">

<p class="noMargin"><span class="BlackColor">Weapon 1</span></p></div>

<div class="card-text">

<p>Description goes here.</p></div>
<div class="card-stats">

<p class="noMargin">Stats • More stats</p></div>

</td></tr></tbody></table>
</div></div>
</div>

<div class="page"><a name="cardwep2" rel="nofollow" id="cardwep2"></a>
<div class="divider"><div class="card">
<table><tbody><tr><td>
<div class="card-emoji">

<p class="noMargin"><span class="CrimsonColor">🍸</span></p></div>
<div class="card-small-name">

<p class="noMargin"><span class="BlackColor">Weapon 2</span></p></div>

<div class="card-text">

<p>Description goes here.</p></div>
<div class="card-stats">

<p class="noMargin">Stats • More stats</p></div>

</td></tr></tbody></table>
</div></div>
</div>

<div class="page"><a name="cardwep3" rel="nofollow" id="cardwep3"></a>
<div class="divider"><div class="card">
<table><tbody><tr><td>
<div class="card-emoji">

<p class="noMargin"><span class="CrimsonColor">💣</span></p></div>
<div class="card-small-name">

<p class="noMargin"><span class="BlackColor">Weapon 3</span></p></div>

<div class="card-text">

<p>Description goes here.</p></div>
<div class="card-stats">

<p class="noMargin">Stats • More stats</p></div>

</td></tr></tbody></table>
</div></div>
</div>

<div class="page"><a name="cardwep4" rel="nofollow" id="cardwep4"></a>
<div class="divider"><div class="card">
<table><tbody><tr><td>
<div class="card-emoji">

<p class="noMargin"><span class="CrimsonColor">👊</span></p></div>
<div class="card-small-name">

<p class="noMargin"><span class="BlackColor">Weapon 4</span></p></div>

<div class="card-text">

<p>Description goes here.</p></div>
<div class="card-stats">

<p class="noMargin">Stats • More stats</p></div>

</td></tr></tbody></table>
</div></div>
</div>

<div class="page"><a name="cardloc1" rel="nofollow" id="cardloc1"></a>
<div class="divider"><div class="card">
<table><tbody><tr><td>
<div class="card-emoji">

<p class="noMargin"><span class="ApplegreenColor">🌳</span></p></div>
<div class="card-small-name">

<p class="noMargin"><span class="BlackColor">Location 1</span></p></div>

<div class="card-text">

<p>Description goes here.</p></div>
<div class="card-stats">

<p class="noMargin">Stats</p></div>

</td></tr></tbody></table>
</div></div>
</div>

<div class="page"><a name="cardloc2" rel="nofollow" id="cardloc2"></a>
<div class="divider"><div class="card">
<table><tbody><tr><td>
<div class="card-emoji">

<p class="noMargin"><span class="ApplegreenColor">🍽️</span></p></div>
<div class="card-small-name">

<p class="noMargin"><span class="BlackColor">Location 2</span></p></div>

<div class="card-text">

<p>Description goes here.</p></div>
<div class="card-stats">

<p class="noMargin">Stats</p></div>

</td></tr></tbody></table>
</div></div>
</div>

<div class="page"><a name="cardloc3" rel="nofollow" id="cardloc3"></a>
<div class="divider"><div class="card">
<table><tbody><tr><td>
<div class="card-emoji">

<p class="noMargin"><span class="ApplegreenColor">🏊</span></p></div>
<div class="card-small-name">

<p class="noMargin"><span class="BlackColor">Location 3</span></p></div>

<div class="card-text">

<p>Description goes here.</p></div>
<div class="card-stats">

<p class="noMargin">Stats</p></div>

</td></tr></tbody></table>
</div></div>
</div>

<div class="page"><a name="cardloc4" rel="nofollow" id="cardloc4"></a>
<div class="divider"><div class="card">
<table><tbody><tr><td>
<div class="card-emoji">

<p class="noMargin"><span class="ApplegreenColor">🛋️</span></p></div>
<div class="card-small-name">

<p class="noMargin"><span class="BlackColor">Location 4</span></p></div>

<div class="card-text">

<p>Description goes here.</p></div>
<div class="card-stats">

<p class="noMargin">Stats</p></div>

</td></tr></tbody></table>
</div></div>
</div>

</div></td>
<td>
<table class="grid-small">
<tbody>
<tr>
<td class="corner">*</td>
<td class="emoji2"><a href="#cardsus1" rel="nofollow"><span title="Suspect 1" class="BlackColor">🧑</span></a></td>
<td class="emoji2"><a href="#cardsus2" rel="nofollow"><span title="Suspect 2" class="BlackColor">🧛</span></a></td>
<td class="emoji2"><a href="#cardsus3" rel="nofollow"><span title="Suspect 3" class="BlackColor">🧙</span></a></td>
<td class="emoji2"><a href="#cardsus4" rel="nofollow"><span title="Suspect 4" class="BlackColor">💁</span></a></td>
<td class="emoji2"><a href="#cardmot1" rel="nofollow"><span title="Motive 1" class="SaffronColor">💰</span></a></td>
<td class="emoji2"><a href="#cardmot2" rel="nofollow"><span title="Motive 2" class="SaffronColor">🤝</span></a></td>
<td class="emoji2"><a href="#cardmot3" rel="nofollow"><span title="Motive 3" class="SaffronColor">🔫</span></a></td>
<td class="emoji2"><a href="#cardmot4" rel="nofollow"><span title="Motive 4" class="SaffronColor">🗣</span></a></td>
<td class="emoji2"><a href="#cardloc1" rel="nofollow"><span class="ApplegreenColor" title="Location 1">🌳</span></a></td>
<td class="emoji2"><a href="#cardloc2" rel="nofollow"><span class="ApplegreenColor" title="Location 2">🍽️</span></a></td>
<td class="emoji2"><a href="#cardloc3" rel="nofollow"><span class="ApplegreenColor" title="Location 3">🏊</span></a></td>
<td class="emoji2"><a href="#cardloc4" rel="nofollow"><span class="ApplegreenColor" title="Location 4">🛋️</span></a></td>
</tr>
<tr>
<td class="emoji2"><a href="#cardwep1" rel="nofollow"><span class="CrimsonColor" title="Weapon 1">🔪</span></a></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq1blank" href="#sq1x" rel="nofollow" id="sq1blank">⬜</a></div>
<div class="page-small"><a name="sq1x" href="#sq1check" rel="nofollow" id="sq1x">❌</a></div>
<div class="page-small"><a name="sq1check" href="#sq1blank" rel="nofollow" id="sq1check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq2blank" href="#sq2x" rel="nofollow" id="sq2blank">⬜</a></div>
<div class="page-small"><a name="sq2x" href="#sq2check" rel="nofollow" id="sq2x">❌</a></div>
<div class="page-small"><a name="sq2check" href="#sq2blank" rel="nofollow" id="sq2check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq3blank" href="#sq3x" rel="nofollow" id="sq3blank">⬜</a></div>
<div class="page-small"><a name="sq3x" href="#sq3check" rel="nofollow" id="sq3x">❌</a></div>
<div class="page-small"><a name="sq3check" href="#sq3blank" rel="nofollow" id="sq3check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq4blank" href="#sq4x" rel="nofollow" id="sq4blank">⬜</a></div>
<div class="page-small"><a name="sq4x" href="#sq4check" rel="nofollow" id="sq4x">❌</a></div>
<div class="page-small"><a name="sq4check" href="#sq4blank" rel="nofollow" id="sq4check">✅</a></div>
</div></td>

<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq5blank" href="#sq5x" rel="nofollow" id="sq5blank">⬜</a></div>
<div class="page-small"><a name="sq5x" href="#sq5check" rel="nofollow" id="sq5x">❌</a></div>
<div class="page-small"><a name="sq5check" href="#sq5blank" rel="nofollow" id="sq5check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq6blank" href="#sq6x" rel="nofollow" id="sq6blank">⬜</a></div>
<div class="page-small"><a name="sq6x" href="#sq6check" rel="nofollow" id="sq6x">❌</a></div>
<div class="page-small"><a name="sq6check" href="#sq6blank" rel="nofollow" id="sq6check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq7blank" href="#sq7x" rel="nofollow" id="sq7blank">⬜</a></div>
<div class="page-small"><a name="sq7x" href="#sq7check" rel="nofollow" id="sq7x">❌</a></div>
<div class="page-small"><a name="sq7check" href="#sq7blank" rel="nofollow" id="sq7check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq8blank" href="#sq8x" rel="nofollow" id="sq8blank">⬜</a></div>
<div class="page-small"><a name="sq8x" href="#sq8check" rel="nofollow" id="sq8x">❌</a></div>
<div class="page-small"><a name="sq8check" href="#sq8blank" rel="nofollow" id="sq8check">✅</a></div>
</div></td>

<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq9blank" href="#sq9x" rel="nofollow" id="sq9blank">⬜</a></div>
<div class="page-small"><a name="sq9x" href="#sq9check" rel="nofollow" id="sq9x">❌</a></div>
<div class="page-small"><a name="sq9check" href="#sq9blank" rel="nofollow" id="sq9check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq10blank" href="#sq10x" rel="nofollow" id="sq10blank">⬜</a></div>
<div class="page-small"><a name="sq10x" href="#sq10check" rel="nofollow" id="sq10x">❌</a></div>
<div class="page-small"><a name="sq10check" href="#sq10blank" rel="nofollow" id="sq10check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq11blank" href="#sq11x" rel="nofollow" id="sq11blank">⬜</a></div>
<div class="page-small"><a name="sq11x" href="#sq11check" rel="nofollow" id="sq11x">❌</a></div>
<div class="page-small"><a name="sq11check" href="#sq11blank" rel="nofollow" id="sq11check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq12blank" href="#sq12x" rel="nofollow" id="sq12blank">⬜</a></div>
<div class="page-small"><a name="sq12x" href="#sq12check" rel="nofollow" id="sq12x">❌</a></div>
<div class="page-small"><a name="sq12check" href="#sq12blank" rel="nofollow" id="sq12check">✅</a></div>
</div></td>
</tr>
<tr>
<td class="emoji2"><a href="#cardwep2" rel="nofollow"><span class="CrimsonColor" title="Weapon 2">🍸</span></a></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq15blank" href="#sq15x" rel="nofollow" id="sq15blank">⬜</a></div>
<div class="page-small"><a name="sq15x" href="#sq15check" rel="nofollow" id="sq15x">❌</a></div>
<div class="page-small"><a name="sq15check" href="#sq15blank" rel="nofollow" id="sq15check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq16blank" href="#sq16x" rel="nofollow" id="sq16blank">⬜</a></div>
<div class="page-small"><a name="sq16x" href="#sq16check" rel="nofollow" id="sq16x">❌</a></div>
<div class="page-small"><a name="sq16check" href="#sq16blank" rel="nofollow" id="sq16check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq17blank" href="#sq17x" rel="nofollow" id="sq17blank">⬜</a></div>
<div class="page-small"><a name="sq17x" href="#sq17check" rel="nofollow" id="sq17x">❌</a></div>
<div class="page-small"><a name="sq17check" href="#sq17blank" rel="nofollow" id="sq17check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq18blank" href="#sq18x" rel="nofollow" id="sq18blank">⬜</a></div>
<div class="page-small"><a name="sq18x" href="#sq18check" rel="nofollow" id="sq18x">❌</a></div>
<div class="page-small"><a name="sq18check" href="#sq18blank" rel="nofollow" id="sq18check">✅</a></div>
</div></td>

<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq19blank" href="#sq19x" rel="nofollow" id="sq19blank">⬜</a></div>
<div class="page-small"><a name="sq19x" href="#sq19check" rel="nofollow" id="sq19x">❌</a></div>
<div class="page-small"><a name="sq19check" href="#sq19blank" rel="nofollow" id="sq19check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq20blank" href="#sq20x" rel="nofollow" id="sq20blank">⬜</a></div>
<div class="page-small"><a name="sq20x" href="#sq20check" rel="nofollow" id="sq20x">❌</a></div>
<div class="page-small"><a name="sq20check" href="#sq20blank" rel="nofollow" id="sq20check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq21blank" href="#sq21x" rel="nofollow" id="sq21blank">⬜</a></div>
<div class="page-small"><a name="sq21x" href="#sq21check" rel="nofollow" id="sq21x">❌</a></div>
<div class="page-small"><a name="sq21check" href="#sq21blank" rel="nofollow" id="sq21check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq22blank" href="#sq22x" rel="nofollow" id="sq22blank">⬜</a></div>
<div class="page-small"><a name="sq22x" href="#sq22check" rel="nofollow" id="sq22x">❌</a></div>
<div class="page-small"><a name="sq22check" href="#sq22blank" rel="nofollow" id="sq22check">✅</a></div>
</div></td>

<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq23blank" href="#sq23x" rel="nofollow" id="sq23blank">⬜</a></div>
<div class="page-small"><a name="sq23x" href="#sq23check" rel="nofollow" id="sq23x">❌</a></div>
<div class="page-small"><a name="sq23check" href="#sq23blank" rel="nofollow" id="sq23check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq24blank" href="#sq24x" rel="nofollow" id="sq24blank">⬜</a></div>
<div class="page-small"><a name="sq24x" href="#sq24check" rel="nofollow" id="sq24x">❌</a></div>
<div class="page-small"><a name="sq24check" href="#sq24blank" rel="nofollow" id="sq24check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq25blank" href="#sq25x" rel="nofollow" id="sq25blank">⬜</a></div>
<div class="page-small"><a name="sq25x" href="#sq25check" rel="nofollow" id="sq25x">❌</a></div>
<div class="page-small"><a name="sq25check" href="#sq25blank" rel="nofollow" id="sq25check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq26blank" href="#sq26x" rel="nofollow" id="sq26blank">⬜</a></div>
<div class="page-small"><a name="sq26x" href="#sq26check" rel="nofollow" id="sq26x">❌</a></div>
<div class="page-small"><a name="sq26check" href="#sq26blank" rel="nofollow" id="sq26check">✅</a></div>
</div></td>
</tr>
<tr>
<td class="emoji2"><a href="#cardwep3" rel="nofollow"><span class="CrimsonColor" title="Weapon 3">💣</span></a></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq29blank" href="#sq29x" rel="nofollow" id="sq29blank">⬜</a></div>
<div class="page-small"><a name="sq29x" href="#sq29check" rel="nofollow" id="sq29x">❌</a></div>
<div class="page-small"><a name="sq29check" href="#sq29blank" rel="nofollow" id="sq29check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq30blank" href="#sq30x" rel="nofollow" id="sq30blank">⬜</a></div>
<div class="page-small"><a name="sq30x" href="#sq30check" rel="nofollow" id="sq30x">❌</a></div>
<div class="page-small"><a name="sq30check" href="#sq30blank" rel="nofollow" id="sq30check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq31blank" href="#sq31x" rel="nofollow" id="sq31blank">⬜</a></div>
<div class="page-small"><a name="sq31x" href="#sq31check" rel="nofollow" id="sq31x">❌</a></div>
<div class="page-small"><a name="sq31check" href="#sq31blank" rel="nofollow" id="sq31check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq32blank" href="#sq32x" rel="nofollow" id="sq32blank">⬜</a></div>
<div class="page-small"><a name="sq32x" href="#sq32check" rel="nofollow" id="sq32x">❌</a></div>
<div class="page-small"><a name="sq32check" href="#sq32blank" rel="nofollow" id="sq32check">✅</a></div>
</div></td>

<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq33blank" href="#sq33x" rel="nofollow" id="sq33blank">⬜</a></div>
<div class="page-small"><a name="sq33x" href="#sq33check" rel="nofollow" id="sq33x">❌</a></div>
<div class="page-small"><a name="sq33check" href="#sq33blank" rel="nofollow" id="sq33check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq34blank" href="#sq34x" rel="nofollow" id="sq34blank">⬜</a></div>
<div class="page-small"><a name="sq34x" href="#sq34check" rel="nofollow" id="sq34x">❌</a></div>
<div class="page-small"><a name="sq34check" href="#sq34blank" rel="nofollow" id="sq34check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq35blank" href="#sq35x" rel="nofollow" id="sq35blank">⬜</a></div>
<div class="page-small"><a name="sq35x" href="#sq35check" rel="nofollow" id="sq35x">❌</a></div>
<div class="page-small"><a name="sq35check" href="#sq35blank" rel="nofollow" id="sq35check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq36blank" href="#sq36x" rel="nofollow" id="sq36blank">⬜</a></div>
<div class="page-small"><a name="sq36x" href="#sq36check" rel="nofollow" id="sq36x">❌</a></div>
<div class="page-small"><a name="sq36check" href="#sq36blank" rel="nofollow" id="sq36check">✅</a></div>
</div></td>

<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq37blank" href="#sq37x" rel="nofollow" id="sq37blank">⬜</a></div>
<div class="page-small"><a name="sq37x" href="#sq37check" rel="nofollow" id="sq37x">❌</a></div>
<div class="page-small"><a name="sq37check" href="#sq37blank" rel="nofollow" id="sq37check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq38blank" href="#sq38x" rel="nofollow" id="sq38blank">⬜</a></div>
<div class="page-small"><a name="sq38x" href="#sq38check" rel="nofollow" id="sq38x">❌</a></div>
<div class="page-small"><a name="sq38check" href="#sq38blank" rel="nofollow" id="sq38check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq39blank" href="#sq39x" rel="nofollow" id="sq39blank">⬜</a></div>
<div class="page-small"><a name="sq39x" href="#sq39check" rel="nofollow" id="sq39x">❌</a></div>
<div class="page-small"><a name="sq39check" href="#sq39blank" rel="nofollow" id="sq39check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq40blank" href="#sq40x" rel="nofollow" id="sq40blank">⬜</a></div>
<div class="page-small"><a name="sq40x" href="#sq40check" rel="nofollow" id="sq40x">❌</a></div>
<div class="page-small"><a name="sq40check" href="#sq40blank" rel="nofollow" id="sq40check">✅</a></div>
</div></td>
</tr>
<tr>
<td class="emoji2"><a href="#cardwep4" rel="nofollow"><span class="CrimsonColor" title="Weapon 4">👊</span></a></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq43blank" href="#sq43x" rel="nofollow" id="sq43blank">⬜</a></div>
<div class="page-small"><a name="sq43x" href="#sq43check" rel="nofollow" id="sq43x">❌</a></div>
<div class="page-small"><a name="sq43check" href="#sq43blank" rel="nofollow" id="sq43check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq44blank" href="#sq44x" rel="nofollow" id="sq44blank">⬜</a></div>
<div class="page-small"><a name="sq44x" href="#sq44check" rel="nofollow" id="sq44x">❌</a></div>
<div class="page-small"><a name="sq44check" href="#sq44blank" rel="nofollow" id="sq44check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq45blank" href="#sq45x" rel="nofollow" id="sq45blank">⬜</a></div>
<div class="page-small"><a name="sq45x" href="#sq45check" rel="nofollow" id="sq45x">❌</a></div>
<div class="page-small"><a name="sq45check" href="#sq45blank" rel="nofollow" id="sq45check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq46blank" href="#sq46x" rel="nofollow" id="sq46blank">⬜</a></div>
<div class="page-small"><a name="sq46x" href="#sq46check" rel="nofollow" id="sq46x">❌</a></div>
<div class="page-small"><a name="sq46check" href="#sq46blank" rel="nofollow" id="sq46check">✅</a></div>
</div></td>

<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq47blank" href="#sq47x" rel="nofollow" id="sq47blank">⬜</a></div>
<div class="page-small"><a name="sq47x" href="#sq47check" rel="nofollow" id="sq47x">❌</a></div>
<div class="page-small"><a name="sq47check" href="#sq47blank" rel="nofollow" id="sq47check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq48blank" href="#sq48x" rel="nofollow" id="sq48blank">⬜</a></div>
<div class="page-small"><a name="sq48x" href="#sq48check" rel="nofollow" id="sq48x">❌</a></div>
<div class="page-small"><a name="sq48check" href="#sq48blank" rel="nofollow" id="sq48check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq49blank" href="#sq49x" rel="nofollow" id="sq49blank">⬜</a></div>
<div class="page-small"><a name="sq49x" href="#sq49check" rel="nofollow" id="sq49x">❌</a></div>
<div class="page-small"><a name="sq49check" href="#sq49blank" rel="nofollow" id="sq49check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq50blank" href="#sq50x" rel="nofollow" id="sq50blank">⬜</a></div>
<div class="page-small"><a name="sq50x" href="#sq50check" rel="nofollow" id="sq50x">❌</a></div>
<div class="page-small"><a name="sq50check" href="#sq50blank" rel="nofollow" id="sq50check">✅</a></div>
</div></td>

<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq51blank" href="#sq51x" rel="nofollow" id="sq51blank">⬜</a></div>
<div class="page-small"><a name="sq51x" href="#sq51check" rel="nofollow" id="sq51x">❌</a></div>
<div class="page-small"><a name="sq51check" href="#sq51blank" rel="nofollow" id="sq51check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq52blank" href="#sq52x" rel="nofollow" id="sq52blank">⬜</a></div>
<div class="page-small"><a name="sq52x" href="#sq52check" rel="nofollow" id="sq52x">❌</a></div>
<div class="page-small"><a name="sq52check" href="#sq52blank" rel="nofollow" id="sq52check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq53blank" href="#sq53x" rel="nofollow" id="sq53blank">⬜</a></div>
<div class="page-small"><a name="sq53x" href="#sq53check" rel="nofollow" id="sq53x">❌</a></div>
<div class="page-small"><a name="sq53check" href="#sq53blank" rel="nofollow" id="sq53check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq54blank" href="#sq54x" rel="nofollow" id="sq54blank">⬜</a></div>
<div class="page-small"><a name="sq54x" href="#sq54check" rel="nofollow" id="sq54x">❌</a></div>
<div class="page-small"><a name="sq54check" href="#sq54blank" rel="nofollow" id="sq54check">✅</a></div>
</div></td>
</tr>
<tr>
<td class="emoji2"><a href="#cardloc1" rel="nofollow"><span class="ApplegreenColor" title="Location 1">🌳</span></a></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq57blank" href="#sq57x" rel="nofollow" id="sq57blank">⬜</a></div>
<div class="page-small"><a name="sq57x" href="#sq57check" rel="nofollow" id="sq57x">❌</a></div>
<div class="page-small"><a name="sq57check" href="#sq57blank" rel="nofollow" id="sq57check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq58blank" href="#sq58x" rel="nofollow" id="sq58blank">⬜</a></div>
<div class="page-small"><a name="sq58x" href="#sq58check" rel="nofollow" id="sq58x">❌</a></div>
<div class="page-small"><a name="sq58check" href="#sq58blank" rel="nofollow" id="sq58check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq59blank" href="#sq59x" rel="nofollow" id="sq59blank">⬜</a></div>
<div class="page-small"><a name="sq59x" href="#sq59check" rel="nofollow" id="sq59x">❌</a></div>
<div class="page-small"><a name="sq59check" href="#sq59blank" rel="nofollow" id="sq59check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq60blank" href="#sq60x" rel="nofollow" id="sq60blank">⬜</a></div>
<div class="page-small"><a name="sq60x" href="#sq60check" rel="nofollow" id="sq60x">❌</a></div>
<div class="page-small"><a name="sq60check" href="#sq60blank" rel="nofollow" id="sq60check">✅</a></div>
</div></td>

<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq61blank" href="#sq61x" rel="nofollow" id="sq61blank">⬜</a></div>
<div class="page-small"><a name="sq61x" href="#sq61check" rel="nofollow" id="sq61x">❌</a></div>
<div class="page-small"><a name="sq61check" href="#sq61blank" rel="nofollow" id="sq61check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq62blank" href="#sq62x" rel="nofollow" id="sq62blank">⬜</a></div>
<div class="page-small"><a name="sq62x" href="#sq62check" rel="nofollow" id="sq62x">❌</a></div>
<div class="page-small"><a name="sq62check" href="#sq62blank" rel="nofollow" id="sq62check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq63blank" href="#sq63x" rel="nofollow" id="sq63blank">⬜</a></div>
<div class="page-small"><a name="sq63x" href="#sq63check" rel="nofollow" id="sq63x">❌</a></div>
<div class="page-small"><a name="sq63check" href="#sq63blank" rel="nofollow" id="sq63check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq64blank" href="#sq64x" rel="nofollow" id="sq64blank">⬜</a></div>
<div class="page-small"><a name="sq64x" href="#sq64check" rel="nofollow" id="sq64x">❌</a></div>
<div class="page-small"><a name="sq64check" href="#sq64blank" rel="nofollow" id="sq64check">✅</a></div>
</div></td>
</tr>
<tr>
<td class="emoji2"><a href="#cardloc2" rel="nofollow"><span class="ApplegreenColor" title="Location 2">🍽️</span></a></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq71blank" href="#sq71x" rel="nofollow" id="sq71blank">⬜</a></div>
<div class="page-small"><a name="sq71x" href="#sq71check" rel="nofollow" id="sq71x">❌</a></div>
<div class="page-small"><a name="sq71check" href="#sq71blank" rel="nofollow" id="sq71check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq72blank" href="#sq72x" rel="nofollow" id="sq72blank">⬜</a></div>
<div class="page-small"><a name="sq72x" href="#sq72check" rel="nofollow" id="sq72x">❌</a></div>
<div class="page-small"><a name="sq72check" href="#sq72blank" rel="nofollow" id="sq72check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq73blank" href="#sq73x" rel="nofollow" id="sq73blank">⬜</a></div>
<div class="page-small"><a name="sq73x" href="#sq73check" rel="nofollow" id="sq73x">❌</a></div>
<div class="page-small"><a name="sq73check" href="#sq73blank" rel="nofollow" id="sq73check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq74blank" href="#sq74x" rel="nofollow" id="sq74blank">⬜</a></div>
<div class="page-small"><a name="sq74x" href="#sq74check" rel="nofollow" id="sq74x">❌</a></div>
<div class="page-small"><a name="sq74check" href="#sq74blank" rel="nofollow" id="sq74check">✅</a></div>
</div></td>

<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq75blank" href="#sq75x" rel="nofollow" id="sq75blank">⬜</a></div>
<div class="page-small"><a name="sq75x" href="#sq75check" rel="nofollow" id="sq75x">❌</a></div>
<div class="page-small"><a name="sq75check" href="#sq75blank" rel="nofollow" id="sq75check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq76blank" href="#sq76x" rel="nofollow" id="sq76blank">⬜</a></div>
<div class="page-small"><a name="sq76x" href="#sq76check" rel="nofollow" id="sq76x">❌</a></div>
<div class="page-small"><a name="sq76check" href="#sq76blank" rel="nofollow" id="sq76check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq77blank" href="#sq77x" rel="nofollow" id="sq77blank">⬜</a></div>
<div class="page-small"><a name="sq77x" href="#sq77check" rel="nofollow" id="sq77x">❌</a></div>
<div class="page-small"><a name="sq77check" href="#sq77blank" rel="nofollow" id="sq77check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq78blank" href="#sq78x" rel="nofollow" id="sq78blank">⬜</a></div>
<div class="page-small"><a name="sq78x" href="#sq78check" rel="nofollow" id="sq78x">❌</a></div>
<div class="page-small"><a name="sq78check" href="#sq78blank" rel="nofollow" id="sq78check">✅</a></div>
</div></td>
</tr>
<tr>
<td class="emoji2"><a href="#cardloc3" rel="nofollow"><span class="ApplegreenColor" title="Location 3">🏊</span></a></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq85blank" href="#sq85x" rel="nofollow" id="sq85blank">⬜</a></div>
<div class="page-small"><a name="sq85x" href="#sq85check" rel="nofollow" id="sq85x">❌</a></div>
<div class="page-small"><a name="sq85check" href="#sq85blank" rel="nofollow" id="sq85check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq86blank" href="#sq86x" rel="nofollow" id="sq86blank">⬜</a></div>
<div class="page-small"><a name="sq86x" href="#sq86check" rel="nofollow" id="sq86x">❌</a></div>
<div class="page-small"><a name="sq86check" href="#sq86blank" rel="nofollow" id="sq86check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq87blank" href="#sq87x" rel="nofollow" id="sq87blank">⬜</a></div>
<div class="page-small"><a name="sq87x" href="#sq87check" rel="nofollow" id="sq87x">❌</a></div>
<div class="page-small"><a name="sq87check" href="#sq87blank" rel="nofollow" id="sq87check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq88blank" href="#sq88x" rel="nofollow" id="sq88blank">⬜</a></div>
<div class="page-small"><a name="sq88x" href="#sq88check" rel="nofollow" id="sq88x">❌</a></div>
<div class="page-small"><a name="sq88check" href="#sq88blank" rel="nofollow" id="sq88check">✅</a></div>
</div></td>

<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq89blank" href="#sq89x" rel="nofollow" id="sq89blank">⬜</a></div>
<div class="page-small"><a name="sq89x" href="#sq89check" rel="nofollow" id="sq89x">❌</a></div>
<div class="page-small"><a name="sq89check" href="#sq89blank" rel="nofollow" id="sq89check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq90blank" href="#sq90x" rel="nofollow" id="sq90blank">⬜</a></div>
<div class="page-small"><a name="sq90x" href="#sq90check" rel="nofollow" id="sq90x">❌</a></div>
<div class="page-small"><a name="sq90check" href="#sq90blank" rel="nofollow" id="sq90check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq91blank" href="#sq91x" rel="nofollow" id="sq91blank">⬜</a></div>
<div class="page-small"><a name="sq91x" href="#sq91check" rel="nofollow" id="sq91x">❌</a></div>
<div class="page-small"><a name="sq91check" href="#sq91blank" rel="nofollow" id="sq91check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq92blank" href="#sq92x" rel="nofollow" id="sq92blank">⬜</a></div>
<div class="page-small"><a name="sq92x" href="#sq92check" rel="nofollow" id="sq92x">❌</a></div>
<div class="page-small"><a name="sq92check" href="#sq92blank" rel="nofollow" id="sq92check">✅</a></div>
</div></td>
</tr>
<tr>
<td class="emoji2"><a href="#cardloc4" rel="nofollow"><span class="ApplegreenColor" title="Location 4">🛋️</span></a></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq98blank" href="#sq98x" rel="nofollow" id="sq98blank">⬜</a></div>
<div class="page-small"><a name="sq98x" href="#sq98check" rel="nofollow" id="sq98x">❌</a></div>
<div class="page-small"><a name="sq98check" href="#sq98blank" rel="nofollow" id="sq98check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq99blank" href="#sq99x" rel="nofollow" id="sq99blank">⬜</a></div>
<div class="page-small"><a name="sq99x" href="#sq99check" rel="nofollow" id="sq99x">❌</a></div>
<div class="page-small"><a name="sq99check" href="#sq98blank" rel="nofollow" id="sq99check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq100blank" href="#sq100x" rel="nofollow" id="sq100blank">⬜</a></div>
<div class="page-small"><a name="sq100x" href="#sq100check" rel="nofollow" id="sq100x">❌</a></div>
<div class="page-small"><a name="sq100check" href="#sq100blank" rel="nofollow" id="sq100check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq101blank" href="#sq101x" rel="nofollow" id="sq101blank">⬜</a></div>
<div class="page-small"><a name="sq101x" href="#sq101check" rel="nofollow" id="sq101x">❌</a></div>
<div class="page-small"><a name="sq101check" href="#sq101blank" rel="nofollow" id="sq101check">✅</a></div>
</div></td>

<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq102blank" href="#sq102x" rel="nofollow" id="sq102blank">⬜</a></div>
<div class="page-small"><a name="sq102x" href="#sq102check" rel="nofollow" id="sq102x">❌</a></div>
<div class="page-small"><a name="sq102check" href="#sq102blank" rel="nofollow" id="sq102check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq103blank" href="#sq103x" rel="nofollow" id="sq103blank">⬜</a></div>
<div class="page-small"><a name="sq103x" href="#sq103check" rel="nofollow" id="sq103x">❌</a></div>
<div class="page-small"><a name="sq103check" href="#sq103blank" rel="nofollow" id="sq103check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq104blank" href="#sq104x" rel="nofollow" id="sq104blank">⬜</a></div>
<div class="page-small"><a name="sq104x" href="#sq104check" rel="nofollow" id="sq104x">❌</a></div>
<div class="page-small"><a name="sq104check" href="#sq104blank" rel="nofollow" id="sq104check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq105blank" href="#sq105x" rel="nofollow" id="sq105blank">⬜</a></div>
<div class="page-small"><a name="sq105x" href="#sq105check" rel="nofollow" id="sq105x">❌</a></div>
<div class="page-small"><a name="sq105check" href="#sq105blank" rel="nofollow" id="sq105check">✅</a></div>
</div></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
</tr>
<tr>
<td class="emoji2"><a href="#cardmot1" rel="nofollow"><span title="Motive 1" class="SaffronColor">💰</span></a></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq106blank" href="#sq106x" rel="nofollow" id="sq106blank">⬜</a></div>
<div class="page-small"><a name="sq106x" href="#sq106check" rel="nofollow" id="sq106x">❌</a></div>
<div class="page-small"><a name="sq106check" href="#sq106blank" rel="nofollow" id="sq106check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq107blank" href="#sq107x" rel="nofollow" id="sq107blank">⬜</a></div>
<div class="page-small"><a name="sq107x" href="#sq107check" rel="nofollow" id="sq107x">❌</a></div>
<div class="page-small"><a name="sq107check" href="#sq107blank" rel="nofollow" id="sq107check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq108blank" href="#sq108x" rel="nofollow" id="sq108blank">⬜</a></div>
<div class="page-small"><a name="sq108x" href="#sq108check" rel="nofollow" id="sq108x">❌</a></div>
<div class="page-small"><a name="sq108check" href="#sq108blank" rel="nofollow" id="sq108check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq109blank" href="#sq109x" rel="nofollow" id="sq109blank">⬜</a></div>
<div class="page-small"><a name="sq109x" href="#sq109check" rel="nofollow" id="sq109x">❌</a></div>
<div class="page-small"><a name="sq109check" href="#sq109blank" rel="nofollow" id="sq109check">✅</a></div>
</div></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
</tr>
<tr>
<td class="emoji2"><a href="#cardmot2" rel="nofollow"><span title="Motive 2" class="SaffronColor">🤝</span></a></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq113blank" href="#sq113x" rel="nofollow" id="sq113blank">⬜</a></div>
<div class="page-small"><a name="sq113x" href="#sq113check" rel="nofollow" id="sq113x">❌</a></div>
<div class="page-small"><a name="sq113check" href="#sq113blank" rel="nofollow" id="sq113check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq114blank" href="#sq114x" rel="nofollow" id="sq114blank">⬜</a></div>
<div class="page-small"><a name="sq114x" href="#sq114check" rel="nofollow" id="sq114x">❌</a></div>
<div class="page-small"><a name="sq114check" href="#sq114blank" rel="nofollow" id="sq114check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq115blank" href="#sq115x" rel="nofollow" id="sq115blank">⬜</a></div>
<div class="page-small"><a name="sq115x" href="#sq115check" rel="nofollow" id="sq115x">❌</a></div>
<div class="page-small"><a name="sq115check" href="#sq115blank" rel="nofollow" id="sq115check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq116blank" href="#sq116x" rel="nofollow" id="sq116blank">⬜</a></div>
<div class="page-small"><a name="sq116x" href="#sq116check" rel="nofollow" id="sq116x">❌</a></div>
<div class="page-small"><a name="sq116check" href="#sq116blank" rel="nofollow" id="sq116check">✅</a></div>
</div></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
</tr>
<tr>
<td class="emoji2"><a href="#cardmot3" rel="nofollow"><span title="Motive 3" class="SaffronColor">🔫</span></a></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq120blank" href="#sq120x" rel="nofollow" id="sq120blank">⬜</a></div>
<div class="page-small"><a name="sq120x" href="#sq120check" rel="nofollow" id="sq120x">❌</a></div>
<div class="page-small"><a name="sq120check" href="#sq120blank" rel="nofollow" id="sq120check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq121blank" href="#sq121x" rel="nofollow" id="sq121blank">⬜</a></div>
<div class="page-small"><a name="sq121x" href="#sq121check" rel="nofollow" id="sq121x">❌</a></div>
<div class="page-small"><a name="sq121check" href="#sq121blank" rel="nofollow" id="sq121check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq122blank" href="#sq122x" rel="nofollow" id="sq122blank">⬜</a></div>
<div class="page-small"><a name="sq122x" href="#sq122check" rel="nofollow" id="sq122x">❌</a></div>
<div class="page-small"><a name="sq122check" href="#sq122blank" rel="nofollow" id="sq122check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq123blank" href="#sq123x" rel="nofollow" id="sq123blank">⬜</a></div>
<div class="page-small"><a name="sq123x" href="#sq123check" rel="nofollow" id="sq123x">❌</a></div>
<div class="page-small"><a name="sq123check" href="#sq123blank" rel="nofollow" id="sq123check">✅</a></div>
</div></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
</tr>
<tr>
<td class="emoji2"><a href="#cardmot4" rel="nofollow"><span title="Motive 4" class="SaffronColor">🗣</span></a></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq127blank" href="#sq127x" rel="nofollow" id="sq127blank">⬜</a></div>
<div class="page-small"><a name="sq127x" href="#sq127check" rel="nofollow" id="sq127x">❌</a></div>
<div class="page-small"><a name="sq127check" href="#sq127blank" rel="nofollow" id="sq127check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq128blank" href="#sq128x" rel="nofollow" id="sq128blank">⬜</a></div>
<div class="page-small"><a name="sq128x" href="#sq128check" rel="nofollow" id="sq128x">❌</a></div>
<div class="page-small"><a name="sq128check" href="#sq128blank" rel="nofollow" id="sq128check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq129blank" href="#sq129x" rel="nofollow" id="sq129blank">⬜</a></div>
<div class="page-small"><a name="sq129x" href="#sq129check" rel="nofollow" id="sq129x">❌</a></div>
<div class="page-small"><a name="sq129check" href="#sq129blank" rel="nofollow" id="sq129check">✅</a></div>
</div></td>
<td class="grid2"><div class="storycontainer-small">
<div class="page-small"><a name="sq130blank" href="#sq130x" rel="nofollow" id="sq130blank">⬜</a></div>
<div class="page-small"><a name="sq130x" href="#sq130check" rel="nofollow" id="sq130x">❌</a></div>
<div class="page-small"><a name="sq130check" href="#sq130blank" rel="nofollow" id="sq130check">✅</a></div>
</div></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
<td class="grid-none2"></td>
</tr>
</tbody>
</table>

<p class="small-text">(Click the images around the board for more information about each suspect/weapon/location, and to fill out the grid, click once in a square for an X and a second time for a check.)
</p></td></tr></tbody></table>
</div>