AppML HTML ပါဝင်ပါသည်။


AppML ဖြင့် HTML တွင် HTML ထည့်သွင်းနိုင်သည်။


HTML တွင် HTML ပါဝင်သည်။

ဤဥပမာကောင်းတစ်ခုသည် သင်၏ HTML စာမျက်နှာများအားလုံးတွင် စံ HTML အောက်ခြေမှတ်စုတစ်ခု ထည့်သွင်းရန်ဖြစ်သည်။

ဤသည်မှာ စံအောက်ခြေမှတ်စုပါရှိသော ဖိုင်တစ်ခု၏ ဥပမာတစ်ခုဖြစ်သည်။

inc_footer.htm

<hr style="margin-top:10px;">
<p style="font-size:11px">2016&copy; W3Schools. All rights reserved.</p>
<hr>

ဤဥပမာတွင် "inc_footer.htm" ဖိုင်ကို ထည့်သွင်းရန်အတွက် appml-include-html ရည်ညွှန်းချက်ကို အသုံးပြုသည်-

ဥပမာ

<!DOCTYPE html>
<html lang="en-US">

<title>Customers</title>
<link rel="stylesheet" href="style.css">
<script src="https://www.w3schools.com/appml/2.0.3/appml.js"></script>

<body>

<h1>Customers</h1>
<table appml-data="customers.js">
<tr>
  <th>Customer</th>
  <th>City</th>
  <th>Country</th>
</tr>
<tr appml-repeat="records">
  <td>{{CustomerName}}</td>
  <td>{{City}}</td>
  <td>{{Country}}</td>
</tr>
</table>

<div appml-include-html="inc_footer.htm"></div>

</body>
</html>