Blogger Information
Blog 5
fans 0
comment 0
visits 3069
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
Assignment 11 Jun 2020
徐一通
Original
670 people have browsed it
hw02

Assignment 02

Structure and interpretation of HTML page

The entire context of HTML is included in the <html></html> (Also known as the root element).    
Inside the root element, there are two elements:      

  • <head></head>
  • <body></body>

Therefore a typical HTML document should look like:

实例

<html>
  <head>
    <!-- Head parts here -->
  </head>
  
          
  <body>
    <!-- Body parts here -->
  </body>
</html>

运行实例 »

点击 "运行实例" 按钮查看在线实例


3 General attribution of HTML element

  • id=''
  • class=''
  • style=''

We can select and obtain one particular element using id=''.

We can select and obtain a kind of elements using class=''.

We can change the style of an element using style=''.

MISCS

Different selectors have different priority levels. Usually style='' > id='' > class=''

Correcting teacher:WJWJ

Correction status:qualified

Teacher's comments:内容过于简单,建议标题改为中文。
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post