Making the table the larger

How do I make my entire table larger? Do I put in code cell by cell?

add this between your <head></head> tags:

<style>
table {
  height: 500px;
  width: 500px;
}
</style>

you can change the values (500) to whatever value you like. If you don’t want use interntal stylesheet because you haven’t learned that yet, you can also use inline style:

<table style="height: 500px;width:500px;">

no need to do individual cells