Advertisement
Guest User

Untitled

a guest
Nov 17th, 2024
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.96 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <title>Document</title>
  6.     <style>
  7.         @font-face {
  8.             font-family: "LINE Seed JP";
  9.             src:
  10.             url("LINESeedJP_OTF_Rg.woff") format("woff"),
  11.             url("LINESeedJP_OTF_Rg.woff2") format("woff2");
  12.             font-weight: 300;
  13.             font-style: normal;
  14.         }
  15.  
  16.         @font-face {
  17.             font-family: "LINE Seed JP";
  18.             src:
  19.                 url("LINESeedJP_OTF_Bd.woff") format("woff"),
  20.                 url("LINESeedJP_OTF_Bd.woff2") format("woff2");
  21.             font-weight: 700;
  22.             font-style: bold;
  23.         }
  24.  
  25.         body {
  26.             font-family:'TT Norms Pro',"LINE Seed JP","Helvetica Neue",Arial,Poppins,"Noto Sans JP",sans-serif;
  27.         }
  28.     </style>
  29. </head>
  30. <body>
  31.     <h1>it works!!</h1>
  32.     <p>テストです。</p>
  33.     <p><strong>太字が反映されていますか?</strong></p>
  34. </body>
  35. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement