Find dating profiles, social networks profiles, social media accounts and hidden accounts for free
online free converter gadget from html to php javascript asp

Online free Converter gadget from HTML to PHP, Javascript, ASP

Blogger templates are coded by HTML. Now HTML5 is used fro coding and it has so much advanced features like embedded you tube videos, canvas etc. Today i am going to share an awesome Online free Converter gadget from HTML to PHP, JavaScript, ASP. using this gadget you can convert your HTML code to PHP codes or HTML to JavaScript codes or HTML to  ASP codes.This was developed by M.Weidemann (http://www.2mstudio.de).

HTML – Hypertext Mark up language used to create websites. The latest version is HTML5.

The HTML code look like this

<!DOCTYPE html>
<html>
<body>
<h1>My First Heading</h1>
<h2>My Second Heading</h2>

</body>
</html>

And the result is –

 My First Heading

My Second Heading

PHP – Hypertext PreProcessor is a  programming language used for serve side scripting language. The latest version is 5.5.11.

The PHP code can be added like the following

<!DOCTYPE html>
<html>
<body>
<?php
echo “My new learning!”;
?>
</body>
</html>

And the result will be like this – My new learning!

ASP – Active Server pages  is a  programming language by Microsoft for server side scripting for web server applications.

The ASP code can be added like this,

<!DOCTYPE html>
<html>
<body>
<%
response.write(“Adding the ASP code!”)
%>
</body>
</html>

and the result will be – Adding the ASP code!

JavaScript – JavaScript or JS is a programming language for website applications, for improving interactivity of websites and used in web browsers.

The JavaScript code can be used like this,

<!DOCTYPE html>
<html>
<body>
<p>Click the button to display the current day, date, and time.</p>
<p id=”demo”></p>
<button type=”button” onclick=”myFunction()”>Try it</button>
<script>
function myFunction()
{
document.getElementById(“demo”).innerHTML = Date();
}
</script>
</body>
</html>

The result will be like this

Click the button to display the current day, date, and time.

This gadget will be really helpful for you if you want to learn the basics of coding.

Kindly Share AheadShip Me This