我正在尝试学习 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>