私は小さなスタートアップのためにウェブサイトを作っています。今、私は、背景色が白である中央領域と、背景色が薄い灰色である中央領域を作りたいと思っています。私は、背景色が白のテーブルを作り、中央に配置しましたが、ページの一番下に表示されます。何が起こっている?ここでテーブルにHTMLコンテンツが表示されない
<html>
<head>
<title>Memocups</title>
</head>
<body bgcolor="#d9d9d9">
<table align="center" width="50%" bgcolor="#ffffff">
<tr>
<p><h1>Memocups</h1><p>
<p><h3>What is a memocup?<h3><p>
<img src="images/img_1_cuponstump.jpg" width="540px" height="360px">
<p>
A memocups is a coffe mug wich has a customizable picture!<br> What makes memocups unique from all other mugs with pictures is <br>that you upload the picture you want to our website and we<br> will put it on the mug! So what are you waiting for the<br>perfect gift is only a few clicks away!</p>
</tr>
</table>
</body>
</html>
、あなたは 'td'を逃している(http://www.w3schools.com/html/html_tables [ここで見てみます] .asp)。また、表形式のデータをレイアウトしていない場合は、テーブルを使用しないでください。 – APAD1
あなたのHTMLは全面的に無効です。 – j08691
ここから始めてください:http://validator.w3.org/nu/ – Quentin