元素的属性:每个标签都有相关的属性与属性值,
属性的作用为元素提供更多的信息,属性语法:<p 属性:“属性值”></p>-->
align属性:指定内容的对齐方式
bgcolor:增加背景颜色
<!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">
<title>Document</title>
</head>
<body bgcolor="red">
<h1 align="left">我是1</h1>
<h2 align="right">我是2</h2>
<h3 align="center">我是3</h3>
</body>
</html>
网友评论