国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

The difference between HTML5 and HTML4

1. Cancel some outdated HTML4 tags

Including purely display effect tags, such as <font> and <center>, they have been completely replaced by CSS .

Other canceled attributes: acronym, applet, basefont, big, center, dir, font, frame, frameset, isindex, noframes, strike,tt

2. Added some New elements

More intelligent form elements: date, email, url, etc.; More reasonable tags: <section>, <video>, <progress>, <nav>, <meter>, <time>, <aside>, <canvas>, etc.

3. File type declaration

There is only one type, <!DOCTYPE html>


##

Continuing Learning
||
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>文檔標(biāo)題</title> </head> <body> HTML5 </body> </html>
submitReset Code