Skip to content

Instantly share code, notes, and snippets.

@mhtocs
Last active September 13, 2018 11:03
Show Gist options
  • Save mhtocs/06d53aec96b4a50b7309ab79e7038832 to your computer and use it in GitHub Desktop.
Save mhtocs/06d53aec96b4a50b7309ab79e7038832 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>

<html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width"> <title>JS Bin</title> <style> table,th,td { border:1px solid #000; border-collapse:collapse; padding:20px; }

</style> </head> <body> <table > <tr> <th rowspan=2> </th> <th colspan=2>Average</th> <th rowspan=2>Red Eyes</th> </tr> <tr><td>Weight</td> <td>Height</td> </tr> <tr> <td>male</td> <td>1.9</td> <td>.005</td> <td>40%</td> </tr> <tr> <td>female</td> <td>1.7</td> <td>0.008</td> <td>40%</td> </tr> </table> </body> </html>


Average Red Eyes
Weight Height
male 1.9 .005 40%
female 1.7 0.008 40%
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment