Dangal
1
An embedded google sheet looks like this:
This is the code:
<iframe src="https://docs.google.com/spreadsheets/d/e/2PACX-1vR1KHviCWACF3hIRj3yov1RX8CfZk45VPXblMW8vBats0Nyk57OgCtqD5fk7BWSGGXNNhEjUY0uqb6N/pubhtml?gid=627478074&single=true&widget=true&headers=false"></iframe>
How can I make it wider so that it includes all the columns without needing to scroll horizontally?
Add a new property width=“100%”, see below code :
<iframe src="https://docs.google.com/spreadsheets/d/e/2PACX-1vR1KHviCWACF3hIRj3yov1RX8CfZk45VPXblMW8vBats0Nyk57OgCtqD5fk7BWSGGXNNhEjUY0uqb6N/pubhtml?gid=627478074&single=true&widget=true&headers=false" width="100%"></iframe>
Similarly, you can try out other properties such as height=“50vh”, etc. Checkout this : HTML iframe tag
(Ill suggest, get your hands into some CSS, its very handy)