Files
JavaWeb/01.前端Web(HTML+CSS)/01.快速入门.html
2025-10-12 09:42:24 +08:00

19 lines
506 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<!-- 声明文档类型为HTML5 -->
<html lang="en">
<head>
<!-- 字符集 -->
<meta charset="UTF-8">
<!-- 设置页面显示宽度,页面宽度等于设备宽度 以及 页面缩放比例 1:1 -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HTML快速入门</title>
</head>
<body>
<h1>HTML的快速入门</h1>
<img src="img/1.png">
<!-- 定义一个一级标题标题内容Hello HTML -->
<h1>Hello HTML</h1>
</body>
</html>