搜尋
首頁web前端html教學用 HTML 設計網頁

用 HTML 設計網頁

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

HTML,稱為超文本標記語言,是用於設計網頁和建立內容的最受歡迎的語言之一。 HTML 使用標籤、元素、圖像和一些最新的元件來使網頁更具吸引力和用戶友好性。

透過將 HTML 與 CSS 結合,可以輕鬆自訂網頁的外觀。 HTML 在正確建立萬維網上的網頁方面發揮著至關重要的作用。它可以使用簡單的文字編輯器進行編輯,允許使用者在需要時進行更改。

如何用 HTML 設計網頁? (一步一步)

 第 1 步:設定您的項目
  • 在電腦上建立一個新資料夾來儲存網頁的檔案。

用 HTML 設計網頁

  • 開啟記事本、Sublime Text 或 Visual Studio Code 等文字編輯器來編寫 HTML 程式碼。

用 HTML 設計網頁

第 2 步:從 HTML 結構開始
  • 透過在頂部新增 聲明來開始 HTML 檔案。這告訴瀏覽器您正在使用 HTML5。
  • 建立開始與結束 HTML 標籤:.
  • 在 HTML 標籤內,建立開始和結束 head 標籤: .
  • 在頭標籤內,新增開始和結束標題標籤:。您可以在此處編寫網頁標題。

用 HTML 設計網頁

第 3 步:將內容加入正文
  • 在結束 head 標籤之後,建立開始和結束 body 標籤:。您可以在此處放置網頁的所有可見內容。
  • 在正文標籤內,您可以開始新增標題、段落、圖像和連結等元素。
  • 要新增標題,請使用

    標籤作為主標題,並使用

    ,副標題依此類推。
  • 要新增段落,請使用

  • 要新增影像,請使用 用 HTML 設計網頁 用 HTML 設計網頁 中。標籤中,需要指定 src 屬性,該屬性應包含指向圖像檔案位置的檔案路徑或 URL。
  • 要新增鏈接,請使用 標籤以及指定 URL 的 href 屬性。

為了更好地理解,這裡是程式碼:



<title>My First Web Page</title>


<h1 id="Unlock-the-Power-of-Online-Learning">Unlock the Power of Online Learning</h1>
<p>Master 1000+ Tools & Technologies.</p>
<img  src="/static/imghwm/default1.png" data-src="C:\Users\Demo2\Desktop\HTML\webimage.PNG" class="lazy" alt="用 HTML 設計網頁" >
  • Python
  • Artificial Intelligence
  • Java
View All 1000 Skills
第 4 步:儲存 HTML 檔案
  • 使用 .html 副檔名 將檔案儲存在您先前建立的資料夾中。
  • 為您的文件選擇一個描述性名稱,例如我的網頁.html(通常用作網站的主頁)。

用 HTML 設計網頁

用 HTML 設計網頁

第 5 步:查看您的網頁
  • 在 Chrome、Firefox 或 Safari 等網頁瀏覽器中開啟 HTML 檔案。

用 HTML 設計網頁

  • 您應該會在瀏覽器中看到以下網頁,顯示我們新增的內容。

輸出:

用 HTML 設計網頁

第 6 步:繼續增強您的網頁
  • 探索其他 HTML 標籤和屬性,以進一步增強網頁的結構和設計。
  • 學習 CSS(層疊樣式表)來設計您的網頁並使其具有視覺吸引力。
  • 嘗試更進階的 HTML 功能,例如表單、表格和多媒體元素。

網頁設計的 HTML 標籤與元素

這裡列出了對於 HTML 網頁設計至關重要的基本 HTML 標籤和元素。

HTML Tag/Element Purpose

to

Define different levels of headings

Define paragraphs of text

Create line breaks
    Create an ordered list
      Create an unordered list
    • Define items within a list
      Create hyperlinks
      用 HTML 設計網頁 Insert images
      Create structured tabular data
      Define the table header section
      Define the table body section
      Define the table footer section
      Define a table row
      Define a table data cell
      Create input forms
      Create different types of form input fields
      Create a dropdown menu for selecting options
      Define individual options within a dropdown menu
      Define the header section of a web page
      Define the navigation section of a web page
      Define a generic section within a web page
      Define an independent, self-contained content within a page
      Define content that is tangentially related to the main page
      Define the footer section of a web page

      Examples of Design Web Pages in HTML

      Let’s create some web pages to see the resultant web page.

      Example #1: Travel Webpage

      Here, we will create an amazing travel webpage showcasing places to visit in Switzerland. We will set one background image and add some text using HTML Code and Styling.

      HTML Code:

      <style>
      .card {
      max-width: 380px;
      margin: auto;
      text-align: center;
      }
      #main {
      background-image: url('switzerland.jpg');
      background-repeat: no-repeat;
      background-size: cover;
      }
      .price {
      color: #f1294a;
      font-size: 18px;
      }
      .card button {
      padding: 10px;
      color: white;
      background-color: #f1294a;
      text-align: center;
      }
      </style>
      
      
      <h2 id="Places-to-Visit-in-Switzerland">Places to Visit in Switzerland</h2>
      <div class="card">
      <h1 id="b-Explore-Switzerland-b"><b>Explore Switzerland</b></h1>
      <h3 id="Starting-from-CHF">Starting from CHF 2000</h3>
      <h2>
      <ul>
      <li>Zurich</li>
      <li>Geneva</li>
      <li>Lucerne</li>
      <li>Interlaken</li>
      <li>Zermatt</li>
      </ul>
      </h2>
      <p><button>Book Here</button></p>
      </div>
      

      Output:
      用 HTML 設計網頁

      Example #2: Feedback Form

      We will build one Feedback form in the form of a web page in this example.

      
      
      <meta name="viewport" content="width=device-width, initial-scale=1">
      <style>
      body {
      font-family: Arial, sans-serif;
      }
      input[type=text], select, textarea {
      width: 100%;
      padding: 8px;
      border: 1px solid #ccc;
      border-radius: 4px;
      margin-top: 4px;
      margin-bottom: 10px;
      }
      input[type=submit] {
      background-color: #4CAF50;
      color: white;
      padding: 8px 12px;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      }
      .container {
      width: 80%;
      max-width: 500px;
      margin: 0 auto;
      border-radius: 6px;
      background-color: #F2F2F2;
      padding: 20px;
      }
      h3 {
      text-align: center;
      }
      label {
      font-weight: bold;
      }
      textarea {
      resize: vertical;
      }
      /* Optional: Add additional styles to make it more visually appealing */
      .container {
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      }
      input[type=submit]:hover {
      background-color: #45a049;
      }
      </style>
      
      
      <h3 id="We-Value-Your-Suggestions">We Value Your Suggestions!</h3>
      <div class="container">
      <form>
      <label for="fname">First Name</label>
      <input type="text" id="fname" name="firstname" placeholder="Enter your name">
      <label for="lname">Last Name</label>
      <input type="text" id="lname" name="lastname" placeholder="Enter your last name">
      <label for="email">Email</label>
      <input type="text" id="email" name="email" placeholder="Enter your email here">
      <label for="subject">Suggestion</label>
      <textarea id="subject" name="subject" placeholder="Provide your suggestion" style="height: 100px"></textarea>
      <input type="submit" value="Submit">
      </form>
      </div>
      
      

      Output:
      用 HTML 設計網頁

      Example #3: OTT Platform Homepage

      In this example, we will create another web page that showcases an amazing homepage for an OTT platform.

      HTML Code:

      
      
      <title>My OTT Platform</title>
        <style>
          /* CSS styles for the website */
          body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #000;
            color: #fff;
          }
          header {
            background-color: #e50914;
            padding: 20px;
            text-align: center;
          }
          header h1 {
            margin: 0;
            font-size: 28px;
            text-transform: uppercase;
            color: #fff;
          }
          nav {
            background-color: #000;
            padding: 10px;
            text-align: center;
          }
          nav a {
            text-decoration: none;
            margin: 10px;
            color: #fff;
            font-weight: bold;
          }
          main {
            padding: 20px;
          }
          footer {
            background-color: #e50914;
            padding: 20px;
            text-align: center;
          }
          .video {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            margin-bottom: 20px;
          }
          .video .thumbnail {
            position: relative;
            width: 250px;
            height: 140px;
            margin: 10px;
            overflow: hidden;
            transition: transform 0.3s;
            background-color: #333;
          }
          .video .thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
          }
          .video .thumbnail:hover {
            transform: scale(1.1);
          }
          .video .title {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            color: #fff;
            padding: 10px;
            margin: 0;
            font-weight: bold;
          }
          /* Additional styles for Netflix-like appearance */
          header, nav, main, footer {
            max-width: 1200px;
            margin: 0 auto;
          }
          .video .thumbnail {
            width: 275px;
            height: 155px;
          }
          .video .title {
            font-size: 14px;
            padding: 8px;
          }
        </style>
      
      
        <header>
          <h1 id="Welcome-to-My-OTT-Platform">Welcome to My OTT Platform</h1>
        </header>
        <nav>
          <a href="#">Home</a>
          <a href="#">Movies</a>
          <a href="#">TV Shows</a>
          <a href="#">Documentaries</a>
          <a href="#">My Account</a>
        </nav>
        <main>
          <h2 id="Trending-Now">Trending Now</h2>
          <div class="video">
            <div class="thumbnail">
              <img src="/static/imghwm/default1.png" data-src="video5.jpg" class="lazy" alt="Video 5">
              <div class="title">Movie1</div>
            </div>
            <div class="thumbnail">
              <img src="/static/imghwm/default1.png" data-src="video6.jpg" class="lazy" alt="Video 6">
              <div class="title">Movie2</div>
            </div>
            <div class="thumbnail">
              <img src="/static/imghwm/default1.png" data-src="video7.jpg" class="lazy" alt="Video 7">
              <div class="title">Movie3</div>
            </div>
          </div>
          <h2 id="Top-Shows">Top 3 Shows</h2>
          <div class="video">
            <div class="thumbnail">
              <img src="/static/imghwm/default1.png" data-src="video8.jpg" class="lazy" alt="Video 8">
              <div class="title">Show1</div>
            </div>
            <div class="thumbnail">
              <img src="/static/imghwm/default1.png" data-src="video9.jpg" class="lazy" alt="Video 9">
              <div class="title">Show2</div>
            </div>
            <div class="thumbnail">
              <img src="/static/imghwm/default1.png" data-src="video10.jpg" class="lazy" alt="Video 10">
              <div class="title">Show3</div>
            </div>
          </div>
          <h2 id="International-Movies">International Movies</h2>
          <div class="video">
            <div class="thumbnail">
              <img src="/static/imghwm/default1.png" data-src="video11.jpg" class="lazy" alt="Video 11">
              <div class="title">Movie1</div>
            </div>
            <div class="thumbnail">
              <img src="/static/imghwm/default1.png" data-src="video12.jpg" class="lazy" alt="Video 12">
              <div class="title">Movie2</div>
            </div>
            <div class="thumbnail">
              <img src="/static/imghwm/default1.png" data-src="video13.jpg" class="lazy" alt="Video 13">
              <div class="title">Movie3</div>
            </div>
          </div>
        </main>
        <footer>
          <p>© 2023 My OTT Platform. All rights reserved.</p>
        </footer>
      
      

      Output:
      用 HTML 設計網頁

      Example #4 Newsletter Subscription Page

      In this example, let’s create a simple subscription page where users can subscribe to a newsletter.

      
      

      Join our Newsletter!

      Output:
      用 HTML 設計網頁

      Example #5: Guess the Number Game

      In this instance, we will design a simple game where users have to guess the number generated by the system.

      
      
      <title>Guessing Game</title>
      <style>
      body {
      text-align: center;
      padding-top: 100px;
      font-family: Arial, sans-serif;
      background-color: #f2f2f2;
      }
      h1 {
      color: #333333;
      }
      p {
      color: #666666;
      }
      input {
      padding: 10px;
      font-size: 16px;
      border-radius: 4px;
      border: 1px solid #cccccc;
      }
      button {
      padding: 10px 20px;
      font-size: 16px;
      background-color: #4CAF50;
      color: white;
      border-radius: 4px;
      border: none;
      cursor: pointer;
      }
      button:hover {
      background-color: #45a049;
      }
      #result {
      margin-top: 20px;
      font-weight: bold;
      }
      </style>
      
      
      <h1 id="Guessing-Game">Guessing Game</h1>
      <p>Guess a number between 1 and 10:</p>
      <input type="number" id="guess" min="1" max="10">
      <button onclick="checkGuess()">Submit</button>
      <p id="result"></p>
      <script>
      function checkGuess() {
      var guess = parseInt(document.getElementById("guess").value);
      var randomNumber = Math.floor(Math.random() * 10) + 1;
      if (guess === randomNumber) {
      document.getElementById("result").innerHTML = "Congratulations! You guessed the correct number.";
      } else {
      document.getElementById("result").innerHTML = "Wrong guess. The correct number was " + randomNumber + ".";
      }
      }
      </script>
      
      

      Output:
      用 HTML 設計網頁

      Conclusion

      From all the above discussion, we can say that Web pages are created by using HTML code in a very simplified manner. Just simply put your HTML code in any one editor, save it with the .html extension, and open it within any browser.

      以上是用 HTML 設計網頁的詳細內容。更多資訊請關注PHP中文網其他相關文章!

      陳述
      本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
      HTML的未來:網絡設計的發展和趨勢HTML的未來:網絡設計的發展和趨勢Apr 17, 2025 am 12:12 AM

      HTML的未來充滿了無限可能。 1)新功能和標準將包括更多的語義化標籤和WebComponents的普及。 2)網頁設計趨勢將繼續向響應式和無障礙設計發展。 3)性能優化將通過響應式圖片加載和延遲加載技術提升用戶體驗。

      HTML與CSS vs. JavaScript:比較概述HTML與CSS vs. JavaScript:比較概述Apr 16, 2025 am 12:04 AM

      HTML、CSS和JavaScript在網頁開發中的角色分別是:HTML負責內容結構,CSS負責樣式,JavaScript負責動態行為。 1.HTML通過標籤定義網頁結構和內容,確保語義化。 2.CSS通過選擇器和屬性控製網頁樣式,使其美觀易讀。 3.JavaScript通過腳本控製網頁行為,實現動態和交互功能。

      HTML:是編程語言還是其他?HTML:是編程語言還是其他?Apr 15, 2025 am 12:13 AM

      HTMLISNOTAPROGRAMMENGUAGE; ITISAMARKUMARKUPLAGUAGE.1)htmlStructures andFormatSwebContentusingtags.2)itworkswithcsssforstylingandjavascript for Interactivity,增強WebevebDevelopment。

      HTML:建立網頁的結構HTML:建立網頁的結構Apr 14, 2025 am 12:14 AM

      HTML是構建網頁結構的基石。 1.HTML定義內容結構和語義,使用、、等標籤。 2.提供語義化標記,如、、等,提升SEO效果。 3.通過標籤實現用戶交互,需注意表單驗證。 4.使用、等高級元素結合JavaScript實現動態效果。 5.常見錯誤包括標籤未閉合和屬性值未加引號,需使用驗證工具。 6.優化策略包括減少HTTP請求、壓縮HTML、使用語義化標籤等。

      從文本到網站:HTML的力量從文本到網站:HTML的力量Apr 13, 2025 am 12:07 AM

      HTML是一種用於構建網頁的語言,通過標籤和屬性定義網頁結構和內容。 1)HTML通過標籤組織文檔結構,如、。 2)瀏覽器解析HTML構建DOM並渲染網頁。 3)HTML5的新特性如、、增強了多媒體功能。 4)常見錯誤包括標籤未閉合和屬性值未加引號。 5)優化建議包括使用語義化標籤和減少文件大小。

      了解HTML,CSS和JavaScript:初學者指南了解HTML,CSS和JavaScript:初學者指南Apr 12, 2025 am 12:02 AM

      WebDevelovermentReliesonHtml,CSS和JavaScript:1)HTMLStructuresContent,2)CSSStyleSIT和3)JavaScriptAddSstractivity,形成thebasisofmodernWebemodernWebExexperiences。

      HTML的角色:構建Web內容HTML的角色:構建Web內容Apr 11, 2025 am 12:12 AM

      HTML的作用是通過標籤和屬性定義網頁的結構和內容。 1.HTML通過到、等標籤組織內容,使其易於閱讀和理解。 2.使用語義化標籤如、等增強可訪問性和SEO。 3.優化HTML代碼可以提高網頁加載速度和用戶體驗。

      HTML和代碼:仔細觀察術語HTML和代碼:仔細觀察術語Apr 10, 2025 am 09:28 AM

      htmlisaspecifictypefodyfocusedonstructuringwebcontent,而“代碼” badlyLyCludEslanguagesLikeLikejavascriptandPytyPythonForFunctionality.1)htmldefineswebpagertuctureduseTags.2)“代碼”代碼“ code” code code code codeSpassSesseseseseseseseAwiderRangeLangeLangeforLageforLogageforLogicIctInterract

      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脫衣器

      AI Hentai Generator

      AI Hentai Generator

      免費產生 AI 無盡。

      熱門文章

      R.E.P.O.能量晶體解釋及其做什麼(黃色晶體)
      1 個月前By尊渡假赌尊渡假赌尊渡假赌
      R.E.P.O.最佳圖形設置
      1 個月前By尊渡假赌尊渡假赌尊渡假赌
      R.E.P.O.如果您聽不到任何人,如何修復音頻
      1 個月前By尊渡假赌尊渡假赌尊渡假赌
      R.E.P.O.聊天命令以及如何使用它們
      1 個月前By尊渡假赌尊渡假赌尊渡假赌

      熱工具

      記事本++7.3.1

      記事本++7.3.1

      好用且免費的程式碼編輯器

      SecLists

      SecLists

      SecLists是最終安全測試人員的伙伴。它是一個包含各種類型清單的集合,這些清單在安全評估過程中經常使用,而且都在一個地方。 SecLists透過方便地提供安全測試人員可能需要的所有列表,幫助提高安全測試的效率和生產力。清單類型包括使用者名稱、密碼、URL、模糊測試有效載荷、敏感資料模式、Web shell等等。測試人員只需將此儲存庫拉到新的測試機上,他就可以存取所需的每種類型的清單。

      禪工作室 13.0.1

      禪工作室 13.0.1

      強大的PHP整合開發環境

      DVWA

      DVWA

      Damn Vulnerable Web App (DVWA) 是一個PHP/MySQL的Web應用程序,非常容易受到攻擊。它的主要目標是成為安全專業人員在合法環境中測試自己的技能和工具的輔助工具,幫助Web開發人員更好地理解保護網路應用程式的過程,並幫助教師/學生在課堂環境中教授/學習Web應用程式安全性。 DVWA的目標是透過簡單直接的介面練習一些最常見的Web漏洞,難度各不相同。請注意,該軟體中

      ZendStudio 13.5.1 Mac

      ZendStudio 13.5.1 Mac

      強大的PHP整合開發環境