Skip to content

Instantly share code, notes, and snippets.

@Wenhuan2516
Created January 16, 2019 22:08
Show Gist options
  • Save Wenhuan2516/9ddd01b8fa554a0ec567c60a71682fa3 to your computer and use it in GitHub Desktop.
Save Wenhuan2516/9ddd01b8fa554a0ec567c60a71682fa3 to your computer and use it in GitHub Desktop.
JS Bin // source https://jsbin.com/texuleb
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<table width="800" border="1" cellspacing="0" >
<tr>
<td colspan="3" align="center"><h1>HTML Table Example</h1></td>
</tr>
<tr>
<td><img src="https://static01.nyt.com/images/2017/09/27/dining/27INSTAPOT1/27INSTAPOT1-mediumThreeByTwo440.jpg"></td>
<td><h2>Meal planner</h2></td>
<td><h2>Recipe Index #</h2></td>
</tr>
<tr>
<th>Week Starting</th>
<th>02/15/2018</th>
<th>Instructions</th>
</tr>
<tr>
<td><b>Day of the week</b></td>
<td><b>Recipe Name</b></td>
<td rowspan="8">Add the name of the recipe under the column recipe name </td>
</tr>
<tr>
<td>Monday</td>
<td>Spinach Fita Pizza</td>
</tr>
<tr>
<td>Tuesday</td>
<td>My new recipe</td>
</tr>
<tr>
<td>Wednesday</td>
<td></td>
</tr>
<tr>
<td>Thursday</td>
<td></td>
</tr>
<tr>
<td>Friday</td>
<td></td>
</tr>
<tr>
<td>Saturday</td>
<td></td>
</tr>
<tr>
<td>Sunday</td>
<td></td>
</tr>
</table>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment