本帖最后由 邢凯 于 2014-8-4 09:59 编辑
我刚开始接触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>登入</title>
- </head>
- <body>
- <table border="1">
- <tr><td><label for="username">用户名:</label></td><td><input id="username" type="text" /></td></tr>
- <tr><td><label for="password">密码:</label></td><td><input id="password" type="password" /></td></tr>
- <tr><td><label for="outhcode">验证码:</label></td><td><input id="outhcode" type="text" /><img alt="验证码" src="outhcode" /></td></tr>
- <tr><td colspan="2"><input type="checkbox"id="remember" /><label for="remember"></label>记住密码</td></tr>
- <tr><td colspan="2"><input type="submit" value="登入" /></td></tr>
- </table>
- </body>
- </html>
复制代码
这个是我的代码,调试的时候直接警告了,说我图片地址不对,但是我不知道该怎么弄,在浏览器里面看的时候拖是看不到的 是一个叉 |