Getting started with HTML
HTML (HYperTExtMArkupLAnguage (Hypertext Markup Language) is a markup language used to describe Web documents.
As a Web developer, We must inevitably access and use HTML. In dynamic development technology, we often need to embed Java code in HTML documents or dynamically output HTML documents. Therefore, it is important to master common HTML tags and how to combine dynamic content and tags.
1. Common labels
Let's take a look at the HTML markup diagram:
2. Content
HTML is the most basic technology for Internet applications. It is a markup language rather than a programming language. Its tags are pre-defined tags, so they are not scalable. The core of HTML is how to better display data. In HTML, pay attention to the following points:
1) in this document, tags and attribute names are case-insensitive.
2) tags are displayed in pairs and end tags cannot be omitted.
3) in HTML documents, if there are multiple consecutive blank characters (space, tab, carriage return, line feed, etc.), the browser parses the character into a space character when displaying it.
This blog post briefly introduces some basic HTML knowledge and common tags. For more information, see http://www.w3school.com.cn/html/index.asp. every section has a small margin.