47 lines
657 B
HTML
47 lines
657 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<link rel="stylesheet" href="./index.css">
|
|
<title>CSS学习第一课</title>
|
|
<style>
|
|
h2 {
|
|
color: yellow;
|
|
}
|
|
.nihao p a {
|
|
color: red;
|
|
}
|
|
|
|
#xk {
|
|
font-size: 50px;
|
|
}
|
|
|
|
|
|
.a+p {
|
|
font-size: 30px;
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="a"></div>
|
|
<p>dfewfew</p>
|
|
|
|
<h2 class="nihao">
|
|
<p>
|
|
<a href="">
|
|
你好
|
|
</a>
|
|
</p>
|
|
</h2>
|
|
|
|
<p>熊坤</p>
|
|
|
|
<a>熊坤</a>
|
|
|
|
|
|
</body>
|
|
</html> |