1、我需要一个网页的设计代码,HTML网页设计,设计一个网页,一个完整的源代码
<html><head><title>帅哥的个人主页</title></head><body>我是XXX,男,XX年X月X日出生,XX省XX市人,长得很帅!<br>李嘉诚理财名言:世界上并非每一件事情,都是金钱可以解决的,但是确实有很多事情需要金钱才能解决。 </body></html>
把上面的代码用记事本存为index.html文件打开就行。
怎么样,这个够简单了吧。纯手工书写。
如需更好的,可以说明具体要求。
2、求以下网页设计表格html代码
代码(大小有需要可以调):
<!DOCTYPE html>运行效果:

3、html网页设计:一个简单的登录界面代码!
是这样的效果吗?
<!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>3</title>
<script>
function r()
{
var username=document.getElementById("username");
var pass=document.getElementById("password");
if(username.value=="")
{
alert("请输入用户名");
username.focus();
return;
}
if(pass.value=="")
{
alert("请输入密码");
return;
}
return true;
}
</script>
</head>
<body>
<form>
<table width="350" bgcolor="#ccffcc" style="border-color" border="1">
<tr align=center>
<td>用户名</td><td><input type="text" name="username" id="username"></td>
</tr>
<tr align=center><td>密 码</td><td><input type="password" name="password" id="password"></td></tr>
<tr align=center><td>验证码</td><td><input type="text" name="yanzheng"></td></tr>
<tr align=center><td colspan="2"><input type="button" value="登 录" onclick="r();"/> <input type="reset" value="重 置"/></td></tr>
</table>
</form>
</body>
</html>
4、求最新网页设计代码大全!!!
http://tool.136z.com/AdCode/
5、求一段网页设计代码
<!--Bai站内搜索开始-->
<form action="http://www.baidu.com/baidu">
<input type=text name=word>
<input type="submit" value="Bai 搜索">
<input name=tn type=hidden value="bds">
<input name=cl type=hidden value="3">
<input name=ct type=hidden value="2097152">
<input name=si type=hidden value="www.williamlong.info">
</form>
<!--Bai站内搜索结束-->