Skip to main content

One post tagged with "Html"

View All Tags

以下是HTML中常用的标签及其解释和代码示例:

1. <html> : 定义HTML文档的根元素。

代码示例:

<!DOCTYPE html>
<html>
<head>
<title>My Webpage</title>
</head>
<body>
<h1>Welcome to my webpage!</h1>
<p>Here is some content.</p>
</body>
</html>

wenhaoWebHtml5 min read