Table row sizing

**Hi All,
I’m new to this forum today, and only slightly less new to HTML!

I use an application at work that allows some HTML functionality. I’ve created a table like below, but can’t get the sizing right. The app allows me to reduce the overall table size and individual cells using px, pt or %, however I can’t figure out how to reduce the top row height. It seems to have a minimum height but I really need it to reduce further. According to the table properties, row 1 is 15pt and row 2 is 75pt, but clearly they’re not, as they’re both about equal height.

Below is the HTML, if anyone is able to see what the issue is please?**

**
Many thanks in advance!
Mark

Welcome to the forum @Mark312

Embedding the style attribute in elements is not a good practice.

Try removing all the style elements, then the width and height of the table will automatically adjust according to the cell contents.

To style the table, you’ll need to learn cascading style sheets and separation of concerns.

Happy coding