You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
528 B
19 lines
528 B
<!doctype html>
|
|
<html id="myDiv">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>段落文本</title>
|
|
</head>
|
|
|
|
<body>
|
|
<h2 align="center">这是一个h2标签层级的居中标题</h2>
|
|
<p align="left">这是一个使用了P段落标签的文章的开头</p>
|
|
<p align="center"> 类型:实例</p>
|
|
<p>这是文章的正文,通过使用两个段落标签p可以实现两个
|
|
段落文本的分层</p>
|
|
</body>
|
|
<script>
|
|
var htmlString = document.getElementById("myDiv").outerHTML;
|
|
console.log("打印:"+htmlString);
|
|
</script>
|
|
</html>
|
|
|