Skip to content

Instantly share code, notes, and snippets.

@nm-scripts
Created January 23, 2020 21:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nm-scripts/9d158f2fe729102da2a3e43b5a9065dd to your computer and use it in GitHub Desktop.
Save nm-scripts/9d158f2fe729102da2a3e43b5a9065dd to your computer and use it in GitHub Desktop.
HTML Tutorial » HTML Table Style The HTML style attribute specifies a style of table cells. https://www.agernic.com/html-tutorial/html-table-style.html
<!DOCTYPE html>
<html>
<head>
<title>HTML Table Style</title>
</head>
<body>
<table style="background:#FFFFCC; width:100%; border:thick solid #FF3333"><br />
<tr><br />
<td style="border:1px solid #006699; witdh:100%;"> January </td><br />
<td style="border:1px solid #FF3333; witdh:100%;"> 12 </td><br />
<td style="border:1px solid #FF3333; witdh:100%;"> 08 </td><br />
<td style="border:1px solid #006699; witdh:100%;"> 23 </td><br />
</tr><br />
</table><br />
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment