<?php /*TOOL_META
{"title":"Weight Converter","desc":"Convert weight units (mg, g, kg, ton, oz, lb). Free online tool.","keywords":"weight converter, kg to lbs, grams to ounces, ton to kg"}
TOOL_META*/ ?>
<!doctype html><html lang="en"><head>
<meta charset="utf-8"/><meta name="viewport" content="width=device-width,initial-scale=1"/>
<title>Weight Converter – TrustedPakistan Tools</title>
<meta name="description" content="Free weight converter for metric and imperial units."/>
<link rel="stylesheet" href="style.css"/></head><body>
<header class="top"><div class="wrap head"><a class="brand" href="/">TrustedPakistan.com</a><nav class="nav"><a href="/tools/">Tools</a></nav></div></header>
<main class="wrap">
<?php $crumbs=[["Home","/"],["Tools","/tools/"],["Calculators","/tools/calculators/"],["Weight Converter",""]]; @include $_SERVER["DOCUMENT_ROOT"]."/tools/_partials/breadcrumbs.php"; ?>
<h1>Weight Converter</h1><p class="sub">Convert between metric and imperial weight units.</p>
<section class="card">
  <div class="row" id="form"></div>
  <div class="row" style="margin-top:10px">
    <button class="btn primary" id="calc" type="button">Convert</button>
    <button class="btn" id="reset" type="button">Reset</button>
  </div>
  <div id="status" class="status"></div>
  <div id="out" class="out"></div>
</section>
</main>
<script>
window.CALC={calc:"weight_convert",fields:[
  {id:"value",label:"Value",type:"number",step:"0.0001",value:1},
  {id:"from",label:"From",type:"select",value:"kg",options:[
    {v:"mg",t:"Milligram (mg)"},{v:"g",t:"Gram (g)"},{v:"kg",t:"Kilogram (kg)"},{v:"ton",t:"Ton (t)"},
    {v:"oz",t:"Ounce (oz)"},{v:"lb",t:"Pound (lb)"}
  ]},
  {id:"to",label:"To",type:"select",value:"lb",options:[
    {v:"mg",t:"Milligram (mg)"},{v:"g",t:"Gram (g)"},{v:"kg",t:"Kilogram (kg)"},{v:"ton",t:"Ton (t)"},
    {v:"oz",t:"Ounce (oz)"},{v:"lb",t:"Pound (lb)"}
  ]}
]};
</script>
<script src="script.js"></script>
</body></html>
