HTML first week

2019/07/26 09:40:52

Learning websites, books:

  • W3C's official website, the rookie tutorial
  • Blog, Zhangxin Xu, Ruan Yifeng, Stuart Masami
  • MDN (Mozilla), and various exemplary distal techniques.
  • GitHub, the world's largest open source code base.
  • The world's largest stackoverflow programming Q & A site.
  • CSS3 manual (book)
  • CSS Secret (books)
  • JS advanced programming (books)

notes:

  • HTML HTML (Hypertext Markup Language)

    Meaning: The piece of the content is defined as headings, paragraphs or images, so that the content having the structure and meaning. Used to define the content and structure of the document.

  • World Wide Web Consortium (World Wide Web Consortium)

    Meaning: technical standards body is currently the most authoritative and influential web of technology.

  • Cascading Style Sheets (Cascading Style Sheets)

    Meaning: is using fonts, colors and other formatting content of external appearance of language.

  • HTML comments

    meaning:<!-- 注释内容-->: 快捷键 ctrl + ?/ ;


Part of HTML elements

<h3> <Programming Getting Started> </h3>
……↑…… ……↑…… ……↑……
Mark the beginning Element content Closing tag
(Opening tag)   (End tag)

Not only mark the beginning of an empty tag:

<meta> <link> <input> <img> <br> <hr>

HTML attributes:

  1. On the left marked the beginning of the equal sign in the attribute name, the right to property values.
  2. Html document defines tells the browser which version of a document is in use <! DOCTYPE html>
  3. <title>标识文档标题,该标题会显示在浏览器的标题栏或者标签页。
  4. Instructs the browser, using character encoding UTF -8 resolve page.
  5. Insert a picture format:![图片名称介绍](路径)

Guess you like

Origin www.cnblogs.com/5nbsp/p/11261865.html