什么是html的混雜模式
HTML:超文本標記語言 (HTML: Hyper Text Markup Language)
HTML is an abbreviation of Hypertext markup language. Hypertext markup language is a text based standard markup language used to create web pages and design documents which are to be exposed to view in a web browser. It is marked up by put into writing in the form of HTML elements. Hyperlink alludes to a sequence series of joining links in a page to other pages. Markup language means to expound the page layout and elements inside the page by using the tags around the document text. Its primary center of attention is towards how to show information on web pages, i.e. On the internet, the webpages we spot are written using HTML code. HTML documents are elucidated and exposed to view by web browsers. Some popular web browsers are: Google Chrome, Mozilla Firefox, Opera, Safari, Internet Explorer etc.
HTML是超文本標記語言的縮寫 。 超文本標記語言是一種基于文本的標準標記語言,用于創建網頁和設計文檔,以供在Web瀏覽器中查看。 通過以HTML元素的形式寫入來標記它。 超鏈接暗示頁面中一系列鏈接到其他頁面的一系列序列。 標記語言意味著通過使用文檔文本周圍的標簽來說明頁面布局和頁面內的元素。 它的主要關注點是如何在網頁上顯示信息,即在Internet上,我們發現的網頁是使用HTML代碼編寫的。 闡明了HTML文檔并將其公開給Web瀏覽器查看。 一些流行的網絡瀏覽器是:谷歌瀏覽器,Mozilla Firefox,Opera,Safari,Internet Explorer等。
In late 1990s, HTML was originated by Tim Berners-Lee. It was in the beginning launched in 1993. Until then, lots of versions of HTML have been launched. Latest HTML5 version is earning popularity because of its various substantial specifications.
在1990年代后期, HTML由Tim Berners-Lee提出。 它最初是在1993年發布的。在那之前,已經發布了許多版本HTML。 最新HTML5版本因其各種實質性規格而受到歡迎。
Following are some specifications of HTML5 version,
以下是HTML5版本的一些規范,
Video: To stream video from a website, the video element enables the users to access it.
視頻 :要從網站流式傳輸視頻,視頻元素使用戶可以訪問它。
Figure: Visual content like photos, illustrations, diagrams, etc. are displayed by the aid of the figure element.
插圖 :借助插圖元素,可以顯示諸如照片,插圖,圖表等的視覺內容。
Section: Webpage content gets organized by the help of section elements, such as div.
Section :網頁內容是通過諸如div之類的section元素來組織的。
NAV: That part of a website that is connected to other pages of the website is used by NAV.
資產凈值 :資產凈值使用與網站其他頁面連接的網站部分。
Header: Introductory elements on a website like a logo, navigation items, search form, etc. are combined by enabling through Header.
標頭 :通過標頭啟用,可以組合網站上的介紹性元素,如徽標,導航項,搜索表單等。
Footer: It is placed at the lowest part of a webpage. It usually holds copyright information, connections to social media and navigation elements.
頁腳 :位于頁面的最低部分。 它通常擁有版權信息,與社交媒體的連接以及導航元素。
Example of HTML document:
HTML文檔示例:
<!DOCTYPE>
<html>
<body>
<h1>Write Your First Heading</h1>
<p>Write Your First Paragraph.</p>
</body>
</html>
優點 (Advantages)
It is broadly used language for web pages coding.
它是網頁編碼中廣泛使用的語言。
HTML language is supported by every browser.
每個瀏覽器都支持HTML語言。
It is simple to learn and use in creating web pages.
創建網頁很容易學習和使用。
A user does not require buying extra software because by default, It's found in every window.
用戶不需要購買額外的軟件,因為默認情況下,它會在每個窗口中找到。
A user can combine or merge HTML with CSS, JavaScript, PHP, etc.
用戶可以將HTML與CSS,JavaScript,PHP等結合或合并。
缺點 (Disadvantages)
If a user requires dynamic pages then HTML is not convenient because It can only create static and plain pages.
如果用戶需要動態頁面,則HTML不方便,因為它只能創建靜態頁面和普通頁面。
A user requires writing a lot of code for creating simple web pages.
用戶需要編寫大量代碼來創建簡單的網頁。
In HTML, Security specifications are not up to the mark or satisfactory.
在HTML中,安全性規范達不到要求或令人滿意。
If a user requires writing a lengthy code for creating a webpage then it produces some difficulty.
如果用戶需要編寫冗長的代碼來創建網頁,則會產生一些困難。
翻譯自: https://www.includehelp.com/dictionary/html-full-form.aspx
什么是html的混雜模式