I am having trouble creating a table that looks like this. I have never made a table like this before and would appreciate any guidance on how to achieve this style. Please help me out! All suggestions are welcome.
Below is the code snippet that I plan to use:
<html>
<body>
<style>
li{
border:1px solid black;
text-align:center;
}
</style>
<ul style="list-style: none outside none;">
<li style="float: left;display: block;width: 100px;height: 40px;">Field 1</li>
<li style="float: left;display: block;width: 100px;height: 40px;">Field 2</li>
<li style="float: left;display: block;width: 100px;height: 40px;">Field 3</li>
</ul>
</body>
</html>
The image below will provide a visual of the desired output for better understanding.