This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE HTML> | |
| <head> | |
| <title>Bkash Agent Cash Out Calculator</title> | |
| <meta property="og:title" content="Bkash Agent Cash Out Calculator" /> | |
| <meta property="og:description" content="This tool helps you figure out how much you have to pay when cashing out through a Bkash agent so that you don't have to pay extra." /> | |
| <meta property="og:type" content="website" /> | |
| <meta property="og:url" content="http://www.bkashcalc.tk/" /> | |
| <meta property="og:image" content="http://www.bkashcalc.tk/images/bkash-calc.png" /> | |
| <link type="text/css" rel="stylesheet" href="style.css"/> | |
| <script type="text/javascript" language="javascript" src="jquery-1.10.2.js"></script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $(document).ready(function() { | |
| var btn = $("input[name=submit]"); | |
| $(btn).click(function() { | |
| $("#result").hide(0); | |
| $("#result1").hide(0); | |
| var $b = $("input[name=bkashamount]").val(); | |
| var $cashout = function() { | |
| if ($b > 0) { | |
| return Math.floor($b - $b * 1.85/100); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <head> | |
| <meta name="description" content="This is just another example of a generic meta description. It will show up on google search results."> | |
| </head> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @media only screen and (min-width: 981px) { | |
| #et-top-navigation { | |
| float: left; | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>7</title> | |
| <link rel="stylesheet" href="style.css"> | |
| </head> | |
| <body> | |
| <div class="wrapper"> | |
| <div class="header"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html> | |
| <head> | |
| ... | |
| </head> | |
| <body> | |
| ... | |
| </body> | |
| </html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html> | |
| ... | |
| </html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Hello World Website</title> | |
| </head> | |
| <body> | |
| <h1>Hello World</h1> | |
| <p>My name is Tamal</p> | |
| </body> |
NewerOlder