鱼C工作室
一起:
让编程改变世界
<header>
标签用于定义文档的页眉(介绍信息)。
在经典的页面布局中,页面被分为 header、main、aside、footer 四个部分:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>鱼C-零基础入门学习Web(Html5+Css3)</title>
</head>
<body>
<article>
<header>
<h1>鱼C工作室</h1>
<p>一起:</p>
</header>
<p>让编程改变世界</p>
</article>
</body>
</html>
一起:
让编程改变世界