HTML Beginner's Guide (1)
This article is a primer on creating HTML files. HTML is the hypertext markup language used in WWW (World Wide Web). The purpose of this guide is to introduce how to use HTML and create web documents. The links in this article lead to some additional information. You can also check out your local bookstore, which may have a lot of valuable information about the Web and HTML.
Foreword
Terms
WWW
World Wide Web
Web
World Wide Web
SGML
Standard Generalized Markup Language--Standard Generalized Markup Language, a standard describing markup language
DTD
Document Type Definition--Text type definition, this is A formal description of a markup language written in SGML
HTML
HyperText Markup Language--Hypertext Markup Language, it is a SGML DTD
HTML is a set of platform-independent format definitions (specified with markup), used to describe World Wide The various components in a Web document. HTML was invented by Tim Berners-Lee at CERN (the European particle physics laboratory in Geneva).
What this article does not include
This guide assumes that the reader has the following basics:
Know how to use NCSA Mosaic or other Web browser
Have a general understanding of Web servers and client browsers
Have access to a Web server (or you just want to create HTML documents locally for personal use)
HTML version
This guide refers to the latest instructions - HTML 2.0-- Plus some additional features already widely implemented in browsers. As well as some new features in development.
HTML Document
What is an HTML document
HTML documents are ordinary text (ASCII) files, which can be edited in any format You can also use word processing software, but remember to save the file as "plain text with carriage return".
HTML Editors
There are a few WYSIWYG editors out there (e.g., HotMetal for multiple platforms, or Adobe PageMill for Macintosh). After you learn some basic knowledge of HTML markup, you may want to use They. You will find that it is very beneficial to have sufficient knowledge of HTML coding to judge whether a WYSIWYG editor is suitable.
If you have not yet chosen which software to use, you can refer to the online sample list of HTML editors downloaded from this site's software. (Classified by application platform) to help you find application software.
Save the files on the server
If you have access to the Web server at school or work, contact your WEB administrator webmaster (the person who maintains the server) and take a look How to put your files on the Web. Otherwise, if you can't access it at school or work, you can see if your community has FreeNet, a community-based network that provides free Internet access services. If there is no free network either , you can contact your local Internet service provider, they can store your documents on the server, but there is a fee. (You can find advertisements in local newspapers with your Chamber of Commerce for the names of companies.)
Mark description
An element is a basic component of a document structure. Examples of elements include headers, tables, paragraphs, lists, etc. You can understand it this way: You use HTML tags to mark each part of the file for the browser. Element. Elements can contain plain text, other elements, or both.
Tags are used in HTML documents to represent various elements. HTML tags consist of a left angle bracket (<), a tag name, and a right It consists of angle brackets (>). Tags usually appear in pairs (e.g.,
and
) to indicate the scope of the tag. The end tag is similar to the start tag, except that the tag name is enclosed in brackets. Leading with a slash (/). HTML tags are listed below.Some elements may contain an attribute attribute, which is additional information contained in the opening tag. For example, by including in the HTML code of an image file With the appropriate attributes, you can specify the position of an image (top, middle, or bottom). Tags with optional attributes are as follows.
Note: HTML is not case-sensitive.
Not all World Wide Web browsers support all tags. If a browser does not support a tag, it usually Just ignore it.
Minimum HTML document
Every HTML document should contain some standard HTML tags. Each document contains two parts: head and body text. The header contains the title, and the body contains the actual paragraphs and lists. and the text of other elements. Browsers need specific information because they are programmed according to HTML and SGML specifications.
The following source document illustrates the necessary elements:
< ;TITLE>A Simple HTML Example
HTML is Easy To Learn
Welcome to the world of HTML.
This is the first paragraph. While short it is
still a paragraph!
And this is the second paragraph.
Required elements are , ,
The above is the content of HTML Beginner’s Guide (1). For more related content, please pay attention to the PHP Chinese website (www.php.cn)!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



Guide to Table Border in HTML. Here we discuss multiple ways for defining table-border with examples of the Table Border in HTML.

Guide to HTML margin-left. Here we discuss a brief overview on HTML margin-left and its Examples along with its Code Implementation.

This is a guide to Nested Table in HTML. Here we discuss how to create a table within the table along with the respective examples.

Guide to HTML Table Layout. Here we discuss the Values of HTML Table Layout along with the examples and outputs n detail.

Guide to HTML Input Placeholder. Here we discuss the Examples of HTML Input Placeholder along with the codes and outputs.

Guide to Moving Text in HTML. Here we discuss an introduction, how marquee tag work with syntax and examples to implement.

Guide to the HTML Ordered List. Here we also discuss introduction of HTML Ordered list and types along with their example respectively

Guide to HTML onclick Button. Here we discuss their introduction, working, examples and onclick Event in various events respectively.
