按以下要求编写网页内容 要求用纯HTML代码在记事本内编写
- 提问者网友:星軌
- 2021-04-15 10:47
2、 网页中的链接文字默认为红色,激活时为黑色,点击过后为绿色
3、 第一行文字“网页练习”为黑体、7号字、居中、倾斜
4、 水平线左对齐、宽80%、粗4、蓝色
5、 图片为img文件夹中的1.jpg,居中放置、宽和高均为200像素,无边框,无说明文字
6、 “新浪主页”、“发送邮件”、“返回”均为加粗、宋体、4号字,单击它们分别链接到新浪首页、abc@sina.com.cn、网页最顶端。
- 五星知识达人网友:时间的尘埃
- 2021-04-15 11:23
<!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=gb2312" />
<title>网页练习</title>
<style type="text/css">
<!--
body {
background-color: #FFFF00;
}
a:link {
color: #FF0000;
text-decoration: none;
}
a:visited {
text-decoration: none;
color: #00FF00;
}
a:hover {
text-decoration: underline;
color: #000000;
}
a:active {
text-decoration: none;
}
.STYLE1 {
font-family: "黑体";
font-size: 7mm;
font-style: italic;
}
.line {
background-color: #0000FF;
}
.STYLE2 {
font-family: "宋体";
font-weight: bold;
font-size: 4mm;
}
-->
</style>
</head>
<body>
<div align="center" class="STYLE1"><a name="1" id="1"></a>网页练习</div>
<hr align="left" width="80%" size="4" noshade="noshade" />
<div align="center"><img src="image/1.jpg" width="200" height="200" /></div>
<span class="STYLE2"><a href="www.sina.com.cn" target="_blank">新浪主页 </a></span><a href="mailto:abc@sina.com.cn" target="_blank" class="STYLE2"> 发送邮件</a><span class="STYLE2"> <a href="#1">返回</a></span>
</body>
</html>
就是这样了,复制粘贴到记事本,然后后缀名改为html即可!