- Building Web and Mobile ArcGIS Server Applications with JavaScript(Second Edition)
- Eric Pimpler Mark Lewin
- 65字
- 2021-07-02 15:48:53
DOCTYPE
The first line of your HTML page will contain the DOCTYPE. This is used to tell the browser how the HTML should be interpreted. We'll focus on HTML5 in this book so the first example you see in the following uses the HTML5 DOCTYPE. The two other common doctypes are HTML 4.01 Strict and XHTML 1.0 Strict:
- HTML5:
<!DOCTYPE html>
- HTML 4.01 Strict:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
- XHTML 1.0 Strict:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
推薦閱讀
- Cocos2d Cross-Platform Game Development Cookbook(Second Edition)
- C# 2012程序設計實踐教程 (清華電腦學堂)
- Learning Data Mining with Python
- Hands-On Data Structures and Algorithms with JavaScript
- 青少年Python編程入門
- Mastering Drupal 8 Views
- Expert Data Visualization
- Corona SDK Mobile Game Development:Beginner's Guide(Second Edition)
- iOS自動化測試實戰:基于Appium、Python與Pytest
- C++反匯編與逆向分析技術揭秘(第2版)
- Spring MVC+MyBatis開發從入門到項目實踐(超值版)
- Scratch從入門到精通
- Python數據科學實踐指南
- Zend Framework 2 Cookbook
- Android 5從入門到精通