交作业!<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Dom</title>
<style type="text/css">
h1{
font-size: 33px
}
#title{
font-size: 66px
}
#m-title{
font-size: 55px
}
#s-title{
font-size: 44px
}
#a-title{
font-size: 33px
}
.red{
color: #F00;
}
.blue{
color: #06F;
}
section h1{
font-size: 33px;
}
</style>
</head>
<body>
<head>
<h1 class="red" id="title">FishC</h1>
</head>
<section>
<h1 class="blue" id="m-title">FishC</h1>
<article>
<h1 class="red" id="s-title">
fishc
</h1>
</article>
</section>
<aside>
<h1 class="blue" id="a-title">fishc</h1>
</aside>
</body>
</html>
|