- Web Developer's Reference Guide
- Joshua Johanan Talha Khan Ricardo Zea
- 84字
- 2021-07-09 20:18:20
html
The html
element is the root element of the HTML document:
<html manifest></html>
Attributes
The manifest
attribute links to a resource manifest that lists which files should be cached.
Description
The html
element must directly follow the DOCTYPE
element. This is the root element that all other elements must be descendants of.
The html
element must have one head
element and one body
element as its children. All other elements will be inside these tags.
Here is what a simple HTML page looks like:
<!DOCTYPE html> <html manifest="offline.appcache"><head> </head> <body> Hey </body> </html>
推薦閱讀
- VMware View Security Essentials
- Raspberry Pi for Python Programmers Cookbook(Second Edition)
- GeoServer Cookbook
- Mastering Entity Framework
- Java 9 Programming Blueprints
- 算法訓練營:提高篇(全彩版)
- Mastering JavaScript Design Patterns(Second Edition)
- PySpark Cookbook
- 從零開始:UI圖標設計與制作(第3版)
- 愛上C語言:C KISS
- Get Your Hands Dirty on Clean Architecture
- Mastering ASP.NET Web API
- 系統分析師UML用例實戰
- Selenium Essentials
- Tkinter GUI Application Development Blueprints