搜尋

HTML5 語意

Sep 04, 2024 pm 04:37 PM
htmlhtml5HTML TutorialHTML PropertiesHTML tags

HTML5 語意元素具有反映組件類型的重要名稱。讓我們以表格、頁首、頁尾等為例

  • 對於 HTML4,開發人員使用自己的 id/類別名稱來設計元素,例如頂部、頁首、底部、選單、頁尾、主要、導覽、材質、物件、頂部導覽、側邊欄等。然而,正因為如此,搜尋引擎無法辨識網頁的正確內容。

    HTML5 語意範例

    現在讓我們來看一些 HTML5 語意元素的範例:

    範例 #1 –

    顧名思義,它指的是頁面介紹段的標題。一頁上可以找到許多標題。

    代碼:

    
    
    <title>Header Element for the page</title>
    <style>
    h1, h4 {
    Color:#red;
    Text-align:centre;
    margin-bottom:2px;
    }
    p {
    font-size:23px;
    text-align:centre;
    margin-top:2px;
    }
    </style>
    
    
    <article>
    <header>
    <h1 id="Educba-learning-bridge">Educba learning bridge</h1>
    <h3 id="Become-a-techinal-learner-with-EDUCBA">Become a techinal learner with EDUCBA</h3>
    <p>Hey the best online training institute in ASIA </p>
    </header>
    </article>
    
    

    輸出:

    HTML5 語意

    範例 #2 –

    導覽連結的集合,用於描述導覽功能表或導覽列。

    代碼:

    
    
    <title>Navigation Element</title>
    <style>
    h1 {
    color:#Grey;
    }
    </style>
    
    
    <h1 id="Navigation-Bar-for-EduCBA">Navigation Bar for EduCBA</h1>
    <nav>
    <a href="https://www.educba.com/">Home</a> |
    <a href="https://www.educba.com/data-science/">Data Science</a> |
    <a href="https://www.educba.com/software-development/">Software Development</a> |
    <a href="https://www.educba.com/design/">Design</a> |
    <a href="https://www.educba.com/finance/">Finance</a>
    </nav>
    
    

    輸出:

    HTML5 語意

    範例 #3 –

    頁面可以分為簡介、聯絡方式、詳細資訊等部分,每個部分都有一個元素。

    代碼:

    
    
    <title>Have a look for Section Element in EduCBA</title>
    <style>
    h1 {
    color:#Grey;
    }
    p {
    font-size:20px;
    text-align:left;
    margin-top:2px;
    }
    </style>
    
    
    <section>
    <h1 id="AWS-Tutorials-for-EduCBA">AWS Tutorials for EduCBA</h1>
    <p>Amazon Web Services (AWS) is one of the world's most popular and used cloud services. 175 supported services are available in AWS. </p>
    </section>
    <section>
    <h1 id="Data-Mining">Data Mining</h1>
    <p>AThrough technological development such as big data and data science companies around the world have benefited from data mining by recognize opportunities and making their organizations efficient through waste reduction, to achieve their business goals.
    </p>
    </section>
    
    

    輸出:

    HTML5 語意

    範例 #4 – 

    此標記元素用於突出顯示文字。

    代碼:

    
    
    <title>EduCBA mark Element</title>
    <style>
    h2 {
    color:#Grey;
    }
    </style>
    
    
    <h1 id="How-to-mark-text">How to mark text </h1>
    <p> In theory, this method transforms <mark>raw data into valuable information</mark> or insights.</p>
    
    

    輸出:

    HTML5 語意

    範例 #5 –

    它是區塊或段劃分的一個面向。它被用作一個包。

    代碼:

    
    
    <title>div Element</title>
    <style>
    .edu {
    color:#grey;
    }
    </style>
    
    
    <h1 id="div-Element-for-educba">div Element for educba </h1>
    <div class="EduCBA">
    <h1 id="Data-Science">Data Science</h1>
    <p>Data analatics computer Science nachine learning </p>
    </div>
    
    

    輸出:

    HTML5 語意

    範例 #6 –

    • 此元素用於定義使用者可以查看或隱藏的其他詳細資訊。
    • 此元素用於定義
      的可見標題。元素

    實施的計畫和

    代碼:

    
    
    <title>Details for the EduCBA Summery</title>
    <style>
    .GFG {
    Color:#red;
    font-size:60px;
    Text-align:left;
    margin-bottom:0px;
    }
    p {
    font-size:25px;
    text-align:left;
    margin-top:3px;
    }
    </style>
    
    
    <details>
    <summary class="EDUCBA">Make your Study easily with us</summary>
    <p>One of the best Data Science and web portal
    where you can learn good skills of programming.
    </p>
    </details>
    
    

    輸出:

    HTML5 語意

    HTML5 語意

    1. 此元素用於指定頁面內容以外的內容。
    2. 此元素用於指定時間或日期。
    3. 此元素用於指定文件的主要內容。

    如何在一個範例中實作所有元素程式碼?

    這裡我們透過一個範例來了解如何實作元素程式碼。

    代碼:

    
    
    <title>Header Element for the page</title>
    <style>
    color:red;
    h1, h4 {
    Color:#red;
    Text-align:centre;
    margin-bottom:2px;
    }
    p {
    font-size:20px;
    text-align:centre;
    margin-top:2px;
    }
    </style>
    
    
    <article>
    <header>
    <h1 id="Educba-learning-bridge">Educba learning bridge</h1>
    <nav>
    <a href="https://www.educba.com/">Home</a> |
    <a href="https://www.educba.com/data-science/">Data Science</a> |
    <a href="https://www.educba.com/software-development/">Software Development</a> |
    <a href="https://www.educba.com/design/">Design</a> |
    <a href="https://www.educba.com/finance/">Finance</a>
    </nav>
    <details>
    <h3 id="Become-a-technicall-learner-with-EDUCBA">Become a technicall learner with EDUCBA</h3>
    <section>
    <h1 id="mark-AWS-Tutorials-for-EduCBA-mark"><mark>AWS Tutorials for EduCBA</mark></h1>
    <p>Amazon Web Services (AWS) is one of the world's most popular and used cloud services. 175 supported services are available in AWS. </p>
    </section>
    <section>
    <h1 id="mark-Data-Mining-mark"><mark>Data Mining</mark></h1>
    <p>Through technological development such as big data and data science companies around the world have benefited from data mining by recognize opportunities and making their organizations efficient through waste reduction, to achieve their business goals.
    </p>
    </section>
    <p><em>EduCBA is the best online training institute in ASIA</em></p>
    </details></header>
    </article>
    
    

    輸出:

    HTML5 語意

以上是HTML5 語意的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
HTML標籤和HTML屬性有什麼區別?HTML標籤和HTML屬性有什麼區別?May 14, 2025 am 12:01 AM

HTMLtagsdefinethestructureofawebpage,whileattributesaddfunctionalityanddetails.1)Tagslike,,andoutlinethecontent'splacement.2)Attributessuchassrc,class,andstyleenhancetagsbyspecifyingimagesources,styling,andmore,improvingfunctionalityandappearance.

HTML的未來:進化和趨勢HTML的未來:進化和趨勢May 13, 2025 am 12:01 AM

HTML的未來將朝著更加語義化、功能化和模塊化的方向發展。 1)語義化將使標籤更明確地描述內容,提升SEO和無障礙訪問。 2)功能化將引入新元素和屬性,滿足用戶需求。 3)模塊化將支持組件化開發,提高代碼復用性。

為什麼HTML屬性對Web開發很重要?為什麼HTML屬性對Web開發很重要?May 12, 2025 am 12:01 AM

htmlattributesarecrucialinwebdevelopment forcontrollingBehavior,外觀和功能

Alt屬性的目的是什麼?為什麼重要?Alt屬性的目的是什麼?為什麼重要?May 11, 2025 am 12:01 AM

alt屬性是HTML中標籤的重要部分,用於提供圖片的替代文本。 1.當圖片無法加載時,alt屬性中的文本會顯示,提升用戶體驗。 2.屏幕閱讀器使用alt屬性幫助視障用戶理解圖片內容。 3.搜索引擎索引alt屬性中的文本,提高網頁的SEO排名。

HTML,CSS和JavaScript:示例和實際應用HTML,CSS和JavaScript:示例和實際應用May 09, 2025 am 12:01 AM

HTML、CSS和JavaScript在網頁開發中的作用分別是:1.HTML用於構建網頁結構;2.CSS用於美化網頁外觀;3.JavaScript用於實現動態交互。通過標籤、樣式和腳本,這三者共同構築了現代網頁的核心功能。

如何在標籤上設置lang屬性?為什麼這很重要?如何在標籤上設置lang屬性?為什麼這很重要?May 08, 2025 am 12:03 AM

設置標籤的lang屬性是優化網頁可訪問性和SEO的關鍵步驟。 1)在標籤中設置lang屬性,如。 2)在多語言內容中,為不同語言部分設置lang屬性,如。 3)使用符合ISO639-1標準的語言代碼,如"en"、"fr"、"zh"等。正確設置lang屬性可以提高網頁的可訪問性和搜索引擎排名。

HTML屬性的目的是什麼?HTML屬性的目的是什麼?May 07, 2025 am 12:01 AM

htmlattributeseresene forenhancingwebelements'functionalityandAppearance.TheyAdDinformationTodeFineBehavior,外觀和互動,使網站互動,響應式,visalalyAppealing.AttributesLikutesLikeSlikEslikesrc,href,href,href,類,類型,類型,和dissabledtransfransformformformformformformformformformformformformformformforment

您如何在HTML中創建列表?您如何在HTML中創建列表?May 06, 2025 am 12:01 AM

toCreateAlistInHtml,useforforunordedlistsandfororderedlists:1)forunorderedlists,wrapitemsinanduseforeachItem,RenderingeringAsabulletedList.2)fororderedlists,useandfornumberedlists,useandfornumberedlists,casundfornumberedlists,casundfornthetthetthetthetthetthetthetttributefordforderfordforderforderentnumberingsnumberingsnumberingStys。

See all articles

熱AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover

AI Clothes Remover

用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool

Undress AI Tool

免費脫衣圖片

Clothoff.io

Clothoff.io

AI脫衣器

Video Face Swap

Video Face Swap

使用我們完全免費的人工智慧換臉工具,輕鬆在任何影片中換臉!

熱門文章

熱工具

MantisBT

MantisBT

Mantis是一個易於部署的基於Web的缺陷追蹤工具,用於幫助產品缺陷追蹤。它需要PHP、MySQL和一個Web伺服器。請查看我們的演示和託管服務。

EditPlus 中文破解版

EditPlus 中文破解版

體積小,語法高亮,不支援程式碼提示功能

Dreamweaver Mac版

Dreamweaver Mac版

視覺化網頁開發工具

Atom編輯器mac版下載

Atom編輯器mac版下載

最受歡迎的的開源編輯器

WebStorm Mac版

WebStorm Mac版

好用的JavaScript開發工具