console
<!-- <!DOCTYPE html>
<html>
<head>
<title>我的第一个网页</title>
<style>
h1 {
color: blue;
font-size: 30px;
}
p {
color: gray;
font-size: 18px;
}
</style>
</head>
<body>
<h1>欢迎来到我的网站!</h1>
<p>这是第一个网页的正文内容。</p>
</body>
</html> -->
<!DOCTYPE html>
<html>
<head>
<title>我的宠物档案</title>
<link rel='stylesheet' href='style.css'>
</style>
</head>
<body>
<h1>我的宠物档案</h1>
<img src="https://img2.baidu.com/it/u=2976763563,2523722948&fm=253&app=138&f=JPEG?w=800&h=1200" alt="我的宠物">
<p>这是我的狗狗小白,今年2岁了,是一只边牧,非常聪明又活泼,最喜欢吃鸡肉和跑步。</p>
</body>
</html>
h1 {
color: blue;
font-size: 30px;
}
p {
color: gray;
font-size: 18px;
}
img {
width: 300px;
}