For school i have to make a website out of notepad with all the html codes and stuff and im wondering what the codes would be to create a table on my site? Also, once i make a table how do i change the background color? I know outside the table its%26lt;body bgcolor=%26quot;?%26quot;%26gt; but what is it inside the table? thank you so much i really appreciate it!How do make a table for a html website if your using Notepad and changing the color of it?This page gives a good tutorial on it
http://www.w3schools.com/htmL/html_tables.asp
There's also other good HTML stuff on it that might come in handy for you.How do make a table for a html website if your using Notepad and changing the color of it?%26lt;table%26gt;
%26lt;tr%26gt;
%26lt;td%26gt;
%26lt;/td%26gt;
%26lt;/tr%26gt;
%26lt;/table%26gt;
Put all of those anchors inside the body anchor. TR is a vertical box and td is a horizontal box. So if you put two TD's inside a TR you get a 2 column layout.
You can add bgcolor to the table anchor.