求助:用记事本编写的html例子
发布网友
发布时间:2022-04-20 22:18
我来回答
共4个回答
热心网友
时间:2023-05-08 02:18
……很简单的,在浏览器里面选择查看源文件,然后复制粘贴到DW里面,去掉你不需要的东西,再把代码复制粘贴出来到记事本就OK了。
热心网友
时间:2023-05-08 02:19
<html>
<head>
<title>note text</title>
</head>
<body>
<a href="http://www.baidu.com">百度</a>
<a href="http://www.google.com">谷歌</a>
<a href="http://www.163.com">网易</a>
</body>
</html>
一切在于精简,交作业不要写的那么复杂~~~~
热心网友
时间:2023-05-08 02:19
<html>
<head><title>Test</title>
<style>
a:link {text-decoration: none;}
a:visited {text-decoration: none;}
a:active {text-decoration: none;}
a:hover {text-decoration: none;}
</style>
</head>
<body>
<table border="0" cellpadding=0 cellspacing=1 bgcolor=black>
<tr>
<td>
<table width="100%" border="0" cellpadding=0 cellspacing=0 bgcolor=white>
<tr>
<td><a href="www.baidu.com">百度</a></td>
<td><a href="www.google.com">谷歌</a></td>
<td><a href="www.163.com">网易</a></td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
热心网友
时间:2023-05-08 02:20
<!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>
<title>作业</title>
</head>
<body>
<a href="www.google.com">谷歌</a>
<a href="www.sina.com">新浪</a>
<a href="www.sohu.com">搜狐</a>
</body>
</html>