HTML one (introduction)_html/css_WEB-ITnose

WBOY
Release: 2016-06-24 11:50:18
Original
1144 people have browsed it

What is HTML?

HTML is a language used to describe web pages.

  • HTML refers to Hypertext Markup Language (Hyper Text Markup Language)
  • HTML is not a programming language, but a markup language
  • A markup language is a set of markup tags
  • HTML uses markup tags to describe Web page
  • HTML tag

    HTML markup tag is usually called HTML tag (HTML tag).

  • HTML tags are keywords surrounded by angle brackets, such as
  • HTML tags usually appear in pairs, such as and
  • The first tag in the tag pair is the opening tag and the second tag is the closing tag
  • The opening and closing tags are also known as opening tag and closing tag
  • HTML document = Web page

  • HTML document describes web page
  • HTML document contains HTML tags and plain text
  • HTML document is also called web page
  • The role of Web browser It reads HTML documents and displays them in the form of web pages. Browsers do not display HTML tags, but use tags to explain the content of the page:

    <html><body><h1>My First Heading</h1><p>My first paragraph.</p></body></html>
    Copy after login

    Example explaining the text description between
  • and Web page
  • The text between and is visible Page content
  • The text between

    is displayed as title
  • >

  • Related labels:
    source:php.cn
    Statement of this Website
    The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
    Popular Tutorials
    More>
    Latest Downloads
    More>
    Web Effects
    Website Source Code
    Website Materials
    Front End Template
    About us Disclaimer Sitemap
    php.cn:Public welfare online PHP training,Help PHP learners grow quickly!