So I wanted to make a post about my shop in game, problem is I spent a bunch of time making this table and I would like to know if it will actually work as a post.
(Here's the actual code)(plz dont take):
<!DOCTYPE html>
<html>
<head>
<style>
table, td, th {
border: 1px solid #ddd;
text-align: left;
}
table {
border-collapse: collapse;
width: 100%;
}
th, td {
padding: 15px;
}
</style>
</head>
<body>
<h2>Welcome to my Shop!</h2>
<p>Currently this is a WIP (NOT SELLING ANYTHING YET) and prices wil be updated regularly. Just to note: the first table is what I am selling, and the second is what I am buying. After that, I have a list of my best shoppers and/or helpers. Thanks for checkign this out!
IMPORTANT: I only accept payment in diamonds, iron, gold and emeralds (D = diamonds, I = iron, G = gold, and E = emeralds).</p>
<p>Currently Selling</p>
<table>
<tr>
<th>Item</th>
<th>Sizes</th>
<th>Price</th>
</tr>
<tr>
<td>Cobblestone</td>
<td>64x, Chest, Double Chest</td>
<td>1I, 2D, 4D</td>
</tr>
<tr>
<td>Logs</td>
<td>64x, 128x, Chest</td>
<td>2I, 4I, 3D</td>
</tr>
<tr>
<td>Glass</td>
<td>32x,64x,256x</td>
<td>2I, 4I, 1D</td>
</tr>
<tr>
<td>Dirt</td>
<td>64x, Chest</td>
<td>FREE, 1D</td>
</tr>
</table>
</body>
</html>