HTML
version control system track our project history work collaboratively with others git svn how the web work URLuniform resource location resources web pages (html documents) images video files fonts (字体) result browser/ client server <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <body> </body> </html> The basic knowledge The Head Section 头部元素元素是用来给浏览器和搜索引擎提供页面下信息的 技巧:在 VSCode 中输入 ! 然后按下 Tab就可以快速创建 HTML Boilerplate (HTML 基本模板),如下所示。 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1....