Skip to content

Instantly share code, notes, and snippets.

@mlassoff
Created March 22, 2018 16:53
Show Gist options
  • Save mlassoff/09927305350b288333033102971d2826 to your computer and use it in GitHub Desktop.
Save mlassoff/09927305350b288333033102971d2826 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>Music</title>
<style>
table
{
border: 1px dotted #128fc2;
background-color: #eeeeee;
border-collapse: collapse;
}
td
{
border: 1px solid black;
}
.odd
{
background-color: aqua;
}
</style>
</head>
<body>
<table>
<tr class="odd">
<th>Song Name</th><th>Artist</th><th>Rating</th>
</tr>
<tr>
<td>Keep on Loving You</td>
<td>REO Speedwagon</td>
<td>*****</td>
</tr>
<tr class="odd">
<td>Faithfully</td>
<td>Journey</td>
<td>*****</td>
</tr>
<tr>
<td>The Cure</td>
<td>Pictures of You</td>
<td>****</td>
</tr>
<tr class="odd">
<td>Suite Judy Blue Eyes</td>
<td>CS & N</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