Google New Tab html checker
void setup(){ size( 400, 400 ); }
<table border="10"> <thead> <tr> <th>Meal</th> <th>Ingredients</th> <th>Price</th> </tr> </thead> <tbody> <tr> <td>Steak</td> <td>Juicy Cow</td> <td>$10</td> </tr> <tr> <td>Applesause</td> <td>Mushed Apples</td> <td>50&cent</td> </tr> <tr> <td>Pudding</td> <td>Choco, Sugar</td> <td>$1</td> </tr> </tbody> </table>
What the table looks like:
Meal | Ingredients | Price |
---|---|---|
Steak | Juicy Cow | $10 |
Applesause | Mushed Apples | 50¢ |
Pudding | Choco, Sugar | $1 |
void setup(){
size( 400, 400 );
println("hello world");
}
Back to top