交作业<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>链接属性和字体样式类别</title>
<link href="0009CSS.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id="container">
<h1>我爱鱼C</h1>
<p>让编程改变世界!<br/>Change the world by program!</p>
<a href="http://www.fishc.com/" style="color: blue; text-decoration: none">鱼C传送门</a>
<a href="http://bbs.fishc.com/forum.php?mod=collection&action=view&ctid=539" style="color: blue;text-decoration: none">HTML5-庖丁解牛</a>
<a href="http://bbs.fishc.com/home.php?mod=space&uid=426569&do=index" style="color: blue;text-decoration: none">传送门</a>
<a href="http://bbs.fishc.com/forum.php?mod=collection&action=view&ctid=595" target="_blank">
<!--target:规定在何处打开链接文档。-->
<section>
<h3>JS-庖丁解牛</h3>
<p>哇塞,好好玩儿,谁来谁知道</p>
</section>
</a>
<p>三原色,<span style="color:red">红</span>
<span style="color:blue">蓝</span>
<span style="color: green">绿</span>
</p>
<p><em>欢迎</em>
<small>来到</small>
<br><strong><q>小天才养殖场</q></strong>
</p>
<!--em,斜体,语义加强
strong,粗体,突出重要性。
big,放大字体
small,缩小字体-->
</div>
</body>
</html>
|