使用 HTML 解决常见问题

以下链接指向你需要使用 HTML 解决的常见日常问题的解决方案。

¥The following links point to solutions to common everyday problems you'll need to solve with HTML.

基本结构

¥Basic structure

HTML 最基本的应用是文档结构。如果你是 HTML 新手,你应该从这里开始。

¥The most basic application of HTML is document structure. If you're new to HTML you should start with this.

基本文本级语义

¥Basic text-level semantics

HTML 专门为文档提供语义信息,因此 HTML 可以回答你可能遇到的有关如何在文档中最好地传达信息的许多问题。

¥HTML specializes in providing semantic information for a document, so HTML answers many questions you might have about how to get your message across best in your document.

超链接

¥Hyperlinks

HTML 的主要原因之一是使用 hyperlinks 使导航变得容易,它可以以多种不同的方式使用:

¥One of the main reasons for HTML is making navigation easy with hyperlinks, which can be used in many different ways:

图片和多媒体

脚本和样式

¥Scripting & styling

HTML 仅设置文档结构。要解决演示问题,请使用 CSS,或使用脚本使页面具有交互性。

¥HTML only sets up document structure. To solve presentation issues, use CSS, or use scripting to make your page interactive.

嵌入内容

不常见或高级问题

¥Uncommon or advanced problems

除了基础知识之外,HTML 还非常丰富,并提供了解决复杂问题的高级功能。这些文章可帮助你解决可能遇到的不太常见的用例:

¥Beyond the basics, HTML is very rich and offers advanced features for solving complex problems. These articles help you tackle the less common use cases you may face:

形式

¥Forms

表单是一种复杂的 HTML 结构,用于将数据从网页发送到 Web 服务器。我们鼓励你仔细阅读我们的 完整的专用指南。你应该从这里开始:

¥Forms are a complex HTML structure made to send data from a webpage to a web server. We encourage you to go over our full dedicated guide. Here is where you should start:

表格信息

¥Tabular information

有些信息(称为表格数据)需要组织成具有列和行的表格。它是最复杂的 HTML 结构之一,掌握它并不容易:

¥Some information, called tabular data, needs to be organized into tables with columns and rows. It's one of the most complex HTML structures, and mastering it is not easy:

数据表示

¥Data representation

高级文本语义

¥Advanced text semantics

高级图片和多媒体

国际化

¥Internationalization

HTML 不是单语的。它提供了处理常见国际化问题的工具。

¥HTML is not monolingual. It provides tools to handle common internationalization issues.

性能