- 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>
推薦閱讀
- Offer來了:Java面試核心知識點精講(原理篇)
- 羅克韋爾ControlLogix系統應用技術
- Java游戲服務器架構實戰
- Hands-On JavaScript High Performance
- Python數據可視化之Matplotlib與Pyecharts實戰
- SQL Server 2016 從入門到實戰(視頻教學版)
- C++服務器開發精髓
- Getting Started with RethinkDB
- Distributed Computing with Python
- Android 5從入門到精通
- Python Django Web從入門到項目實戰(視頻版)
- PhantomJS Cookbook
- Building Microservices with .NET Core 2.0(Second Edition)
- OpenStack Networking Cookbook
- Storm Real-Time Processing Cookbook