怎么读懂下面的代码????具体又是什么意思
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link href="style/style.css" rel="stylesheet" type="text/css">
</head>
<body>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td class="top_left"> </td>
<td class="top_center"> </td>
<td class="top_right" align="right"> </td>
</tr>
</table>
</body>
</html> 一段一段读
个人觉得还是看一边(http://www.w3school.com.cn/html/index.asp) 看完了基本就能看懂了
参考(http://www.w3school.com.cn/tags/tag_doctype.asp)
表格参考资料(http://www.w3school.com.cn/tags/tag_table.asp)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> html 标签
<head> 头部
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">设置字符集
<link href="style/style.css" rel="stylesheet" type="text/css"> 引入样式
</head>
<body>内容部分标签
<table width="100%" border="0" cellspacing="0" cellpadding="0"> 建立一个表格 , 宽度 100% 也就是满屏border 规定表格边框的宽度。
<tr>
<td class="top_left"> </td>
<td class="top_center"> </td>
<td class="top_right" align="right"> </td>
</tr>
</table>
</body>
1、保存为xxx.index文件,用浏览器打开就知道干什么的了 都是乱码,
页:
[1]