X

Custom HTML/CSS

Custom HTML/CSS

1: သႂ်ႇ code ပႃတႂ်ႈၼႆႉၼႂ်း <head> tag ၶွင် HTM

HTML
<link href="https://taidev.github.io/Shan/shan.css" rel="stylesheet">

ပိူင်တႅၵ်ႈ –

HTML
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Shan Font</title>
  <!-- Shan Font CSS -->
  <link href="https://taidev.github.io/Shan/shan.css" rel="stylesheet">
</head>
<body>
</body>
</html>

2: ၸႂ်ႉၾွၼ်ႉ Shan ၼႂ်း CSS

CSS
body {
  font-family: 'Shan', sans-serif;
}

ပိူင်တႅၵ်ႈ –

HTML
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Shan Font</title>
  
  <!-- Shan Font CSS -->
  <link href="https://taidev.github.io/Shan/shan.css" rel="stylesheet">
  
  <style>
    /* Apply Shan font to body */
    body {
      font-family: 'Shan', sans-serif;
      font-size: 20px;
    }

    /* Optional: Apply to specific element */
    .shan-title {
      font-family: 'Shan', sans-serif;
      color: #333;
    }
  </style>
</head>
<body>
  <!-- Example content with Shan font -->
  <p class="shan-title">ႁူဝ်ၶေႃႈလိၵ်ႈတႆး</p>
</body>
</html>

Leave A Comment