私はCSSを学ぼうとしていますが、これまでのところ、HTMLをCSSに変更することは、フォント、色、テキストサイズ、テーブル、背景を一部のCSSステートメントに変更するだけのようです。
私の問題は、まだ必要なHTMLと削除するものがわからないことです。CSSのものはどこに置きますか?この簡単なHTMLで学習しようとする基本的なHTML:
<html>
<head>
<title>CSS practice</title>
</head>
<body style="background-color:white;">
<table border="1" width="990" bgcolor="#99CCFF">
<tr>
<td width="990"><p align="center"><font face="Arial Black" size="6" color="#680000">DDDD</font></td>
</tr>
</table>
<table border="0" width=990 bgcolor="#000000" cellspacing="0" cellpadding="0">
<tr>
<td width="990"><font color="#FFFFFF" face="Arial" size="2"><b> Personal Portfolio</b> </font></td>
</tr>
</table>
<table border="0" width=990 cellspacing="0" cellpadding="0">
<tr>
<td width="18%" bgcolor="#99CCFF" valign="top">
<p style="margin-left: 20"><b><font face="Arial" size="2" color="#000000">
<a href="index.html"> Home </a><br><br>
<a href="about.html"> About Me </a><br><br>
<a href="outreach.html"> Outreach </a><br><br>
<a href="contact.html"> Contact Me </a><br><br>
<a href="experience.html"> Experience </a><br><br>
<a href="education.html"> Education </a><br><br>
<a href="skills.html"> Skills </a><br><br>
<td width="61%" valign="top">
<blockquote>
<p><br>
<font face="Arial" size="5">Welcome</font></p>
<p><font size="2" face="Arial"> Aspiring CSS programmer </font></p>
<img src="me.jpg" alt="US"/>
</blockquote><br><br>
<p align="center"><font face="Arial" size="1">© COPYRIGHT 2012 ALL RIGHTS
RESERVED </font></td>
<table border="0" width="990" bgcolor="#000000" cellspacing="0" cellpadding="0">
<tr>
<td width="100%"><font size="1"> </font></td>
</tr>
</table>
</body>
</html>