It's a faith in technology.

Convert Celsius to Fahrenheit in Blog Code

Share on :

How to Convert Fahrenheit to Celsius in Blog. you can use this simple program that will allow you to convert Celsius to Fahrenheit Follow Very Simple Steps.

1. Login to Blogger then Chose "Layout"

2. Click on "Add page element" (chose where you want to put it) then chose "HTML/Javascript"

3. Copy the code below and put it in the "Configure HTML/JavaScrip" box.

4. Save Your Work and Refresh Your Blog For New Changes

<script type="text/javascript">
function convert(degree)
{
if (degree=="C")
{
F=document.getElementById("c").value * 9 / 5 + 32;
document.getElementById("f").value=Math.round(F);
}
else
{
C=(document.getElementById("f").value -32) * 5 / 9;
document.getElementById("c").value=Math.round(C);
}
}
</script>
<p></p><b>Insert a number into one of the input fields below:</b>
<form>
<input id="c" onkeyup="convert('C')" name="c"/> degrees Celsius<br/>
equals<br/>
<input id="f" onkeyup="convert('F')" name="f"/> degrees Fahrenheit
</form>
<b>Code by <a href="http://bloghacktips.blogspot.com" target="Blank">Blog Tips</a></b>
</b>

Note :- Don't Modify given Code.


0 comments on Convert Celsius to Fahrenheit in Blog Code :

Post a Comment and Don't Spam!

Thanks For Your Comment. You can also reach me at my mai Id :- blogtips.frd@gmail.com

 

Receive all updates via Facebook. Just Click the Like Button Below

You can also receive Free Email Updates: