交作业<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style type="text/css">
span {
font-size: 18px;
color: white;
font-family: sans-serif;
font-weight: bold;
}
a{
font-size: 22px;
color: white;
border:1px solid white;
border-radius: 2px;
background-color: aqua;
padding: 10px;
margin: 20px;
text-decoration: none;
}
</style>
</head>
<body>
<marquee scrollamount="8" bgcolor="red" direction="left" height="30" align="middle" behavior="alternate" >
<span>各祝鱼油,鸡年大吉(J)~</span>
</marquee>
<marquee scrollamount="10" bgcolor="red" direction="right" height="30" align="middle" behavior="alternate" >
<a id="a2" href="http://bbs.fishc.com/forum.php?mod=collection&action=view&ctid=539">欢迎来到不二老哥的HTML5-庖丁解牛</a>
</marquee>
</body>
</html>
|