youcount.github.io/billion-to-million.html

91 lines
3.2 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title>Billion to Million Converter - YouCount</title>
<meta name="theme-color" content="#e61919" />
<link rel="shortcut icon" href="/favicon.ico"/>
<link rel="manifest" href="/manifest.json">
<meta charset="utf-8">
<meta http-equiv="EXPIRES" content="Thu, 10 Jan 2030 12:00:00 GMT">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="There are 0.001 billion in 1 million. There are 1000 millions in 1 billion. Convert millions to billions and vice versa using calculator."/>
<meta property="og:title" content="Billion to Million Converter - YouCount"/>
<meta property="og:description" content="There are 0.001 billion in 1 million. There are 1000 millions in 1 billion. Convert millions to billions and vice versa using calculator." />
<meta property="og:type" content="article"/>
<meta property="og:image" content="https://youcount.github.io/images/fblogo.jpg" />
<meta property="og:site_name" content="YouCount" />
<meta property="article:author" content="https://www.facebook.com/20manas"/>
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Article",
"headline": "Billion to Million Converter - YouCount",
"datePublished": "2018-05-12",
"publisher": {
"@type": "Organization",
"name":"YouCount",
"logo": {
"@type": "ImageObject",
"url": "https://youcount.github.io/images/amplogo.jpg",
"width": 600,
"height": 60
}
},
"author":"Manas Khurana",
"image": {
"@type": "ImageObject",
"url": "https://youcount.github.io/images/fblogo.jpg",
"width": 1203,
"height": 630
},
"description":"There are 0.001 billion in 1 million. There are 1000 millions in 1 billion. Convert millions to billions and vice versa using calculator."
}
</script>
<style>
article {
width:800px;
max-width:100%;
margin:0 auto;
text-align:center;
}
</style>
</head>
<body>
<article>
<br><br><br>
There are 0.001 billion in 1 million. There are 1000 millions in 1 billion.
<br><br>
Convert millions to billions and vice versa using calculator.
<br><br>
<label for="million">Million: </label>
<input name="million" id="million" value="" oninput="conv(this.value,this.name)">
<br><br>
<label for="billion">Billion: </label>
<input name="billion" id="billion" value="1" oninput="conv(this.value,this.name)">
</article>
<script>
inp=0
function conv(val,name) {
if(inp===0) {
inp=1;
if(name=='million') {
document.getElementById('billion').value = val/1000;
} else {
document.getElementById('million').value = val*1000;
}
inp=0;
}
}
conv(1,'billion');
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-25460437-7', 'auto');
ga("send","pageview",location.pathname);
</script>
</body>
</html>