HTML Getting Started Tutorial
What is HTML language
HTML (hypertext MarkUp Language) is a language that uses special tags to describe the structure and representation of a document. (It can be compiled with any compiler because it is a plain text file)
What's the HTML like?
The HTML syntax is to give the text a label that indicates the meaning of the text, so that the user (person or program) can get a better understanding of the text. Here is one of the simplest HTML documents:
All HTML documents should have a .
The <body> tag contains all the contents of the document, such as text, hyperlinks, images, tables, lists, and so on. )
<a> tags are used to indicate links
What you can include in an HTML document
With different tags, HTML documents can contain different content, such as text, links, pictures, lists, tables, forms, frames, and so on.
text : HTML support for text is the most abundant, you can set different levels of title, segmentation and wrapping, you can specify the semantics and appearance of text, you can indicate that the text is referenced from other places, and so on.
link : A link to indicate that the content is related to another page or to a location on the current page.
Images : Images are used to make the page more aesthetically pleasing, or to provide more information.
list : Lists are used to describe a series of entries that are related to each other.
tables : Tables are the form of organizing data together in rows and columns, and many people use tables for page layouts.
forms: Forms are typically made up of input boxes, buttons, multiple boxes, radio boxes, and drop-down lists, making HTML pages more interactive.
frame : The frame enables the page to contain other pages.
Getting Started with HTML language tutorial