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
| body{ | |
| background: red; | |
| margin: 0; | |
| padding: 0; | |
| background-image: url('background.png'); | |
| /*position: relative;*/ | |
| } | |
| #banner{ | |
| width: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
| import java.util.*; | |
| public class Purse { | |
| ArrayList<String> list; | |
| public Purse() | |
| { | |
| list=new ArrayList<>(); | |
| } | |
| public void addCoin(String coinName) | |
| { |
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
| var myobject; | |
| try{ myobject=new ActiveObject("Microsoft.XMLHTTP"); } | |
| catch(e) { try{ myobject=new ActiveObject("Msxml2.XMLHTTP"); } | |
| catch(e) { myobject=false; } } | |
| if(!myobject) { myobject=new XMLHttpRequest(); | |
| } | |
| function getPages(page,location) | |
| { var loca=document.getElementById(location); |