Hey, Everyone, Hope uh all are doing good. Today was a good day and I learned many things as I progressed further in web dev. the first one I learned is how to create a table on a web page using HTML. to insert a table we've to use the table tag at first and then to add the top row in bold letters, we'll use thead tag, then tr, and then th tags. After closing these nested tags in thead. Then we'll add lower layers, for that we'll use tbody , then tr and td tags as used below. Similarly to add a footer we've to use tfoot and then tr , th tags as we can see in the below code. Basically, th tag adds an element in a table in bold letters. Later, I created a payment form. Learned many things form that too. You can see that after the given code. < br > < table > < thead > < tr > < b > < th > Name </ th > ...
Comments
Post a Comment