用记事本怎么写html

1. 怎么在用记事本写的html网页中添加图片啊 首先将记事本和图片放到同一个文件夹中,或者将图片放到和记事本同一个文件夹的子文件夹中,接下来就可以添加图片 。
比如:
我的代码是
【用记事本怎么写html】<html>
<head>
</head>
<body>
<img src="http://www.xuexi88.com/zhishi/biye.jpg"> <;!-- 若图片在一个子文件夹下,路径设置为 src="http://www.xuexi88.com/zhishi/子文件名/biye.jpg" -->
</body>
</html>
文件位置示意:
html打开示意:
2. 我用记事本写的HTML代码 请问绝对底部的代码怎么写 和你用什么写无关……
发个例子给你
<html>
<head>
<style type="text/css" title="">
html, body, #wrap {height:100%;}
body > #wrap {height:auto; min-height:100%;}
#main {padding-bottom:70px;}/*footer+10px间距*/
#footer {position:relative;margin-top:-60px;height:60px;clear:both;}
.clearfix:after {content: ".";display: block;height: 0;clear: both;visibility: hidden;}
.clearfix{display: inline-block;}
*html .clearfix { height: 1%;}.clearfix {display: block;}
#content{float:left;width:878px;border:1px solid #999;height:400px;}
#side{float:right;width:98px;border:1px solid #999;}
#footer{border:1px solid #999;}
</style>
</head>
<body>
<div id="wrap">
<div id="main" class="clearfix">
<div id="content">;说明: 使用这个布局的前提,就是footer要在总的div容器之外,footer使用一个层,其它所有内容使用一个总的层 。如果确实需要到添加其它同级层,那这个同级层就必须使用position:absolute进行绝对定位 。</div>
<div id="side">Side</div>
</div>
</div>
<div id="footer">ffff</div>
</body>
</html>
例子2
<html> <head> <link rel="stylesheet" href="http://www.xuexi88.com/zhishi/layout.css" /> <style> <style> *{margin: 0;} html, body {height: 100%;} .wrapper { min-height: 100%; height: auto !important; height: 100%; margin: 0 auto -4em; } .footer, .push {height: 4em;} </style> </head> <body> <div class="wrapper"> <p>Your website content here.</p> <div class="push"></div> </div> <div class="footer"> <p>Copyright (c) 2008</p> </div> </body> </html>

用记事本怎么写html

文章插图