- 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>
推薦閱讀
- C語言程序設計實踐教程(第2版)
- 名師講壇:Spring實戰開發(Redis+SpringDataJPA+SpringMVC+SpringSecurity)
- Learning Data Mining with R
- Python編程:從入門到實踐
- Java語言程序設計教程
- Arduino Wearable Projects
- C++程序設計
- Python全棧開發:基礎入門
- RESTful Web API Design with Node.js(Second Edition)
- Unity與C++網絡游戲開發實戰:基于VR、AI與分布式架構
- Building E-Commerce Solutions with WooCommerce(Second Edition)
- Python Natural Language Processing
- 深入解析WPF編程
- Mastering Predictive Analytics with R(Second Edition)
- C編程從入門到實踐