Foundation - 引言



描述

它與普通文字相比是一段明顯較大的文字塊,可用於廣告或其他描述性文字。

示例

以下示例演示了引言在 Foundation 中的用法。

<!doctype html>
<html>
   <head>
      <title>Lead Paragraph</title>
      <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/foundation-sites@6.5.1/dist/css/foundation.min.css" crossorigin="anonymous">

      <!-- Compressed JavaScript -->
      <script src="https://cdnjs.cloudflare.com/ajax/libs/foundation/6.0.1/js/vendor/jquery.min.js"></script>
      <script src="https://cdn.jsdelivr.net/npm/foundation-sites@6.5.1/dist/js/foundation.min.js" crossorigin="anonymous"></script>

   </head>

   <body>
      <p class = "lead">This is the paragraph with <em>lead</em> class. Foundation is one
      of the advanced front-end framework for designing beautiful responsive websites.
      It works on all types of devices and provides you with HTML, CSS and JavaScript
      plugins.</p>

      <p>This is the normal paragraph. Foundation is one of the advanced front-end
      framework for designing beautiful responsive websites. It works on all types of
      devices and provides you with HTML, CSS and JavaScript plugins.</p>

      <script>
         $(document).ready(function() {
            $(document).foundation();
         })
      </script>
   </body>
</html>

輸出

讓我們執行以下步驟,瞭解以上給定的程式碼是如何工作的 −

  • 將上述給定的 html 程式碼儲存到typography_lead_paragraph.html檔案。

  • 在瀏覽器中開啟此 HTML 檔案,輸出如下所示。

foundation_typography_helpers.htm
廣告