Jump to content

zachary

Members
  • Posts

    120
  • Joined

  • Last visited

Posts posted by zachary

  1. You can make a page out of tables

    <html><head><title></title></head><body><table border="0" cellspacing="0" padding="0"><tr><td width="20%" bgcolor="#"><!-- SIDE LINK CONTENT --></td><td width="80%" bgcolor="#"><!-- CONTENT HERE! --></td></tr></table></body></html>

  2. Site Name: MedussaSite Description:Its the first website for a club called Medussa Site Owner/Developer:MoiSite Address: http://medussa3.atspace.comExtra Comments:I'd love to hear from people what they think of this site i've made. Its taken a long time but ive got there in the end. Next step is to buy webspace once ive got a few comments and critiscism and ways to improve.CheersP.s i think it would of been a better topic if you comment on a site first from the ones above and then leave your site.

    The bottom of your website to display the copyright it is © .
  3. Im making a form were All the forms are nessery. I need a script that wont allowany forms to be left blank. So it should make a pop-up saying:"We are sorry but you must fill in all the forms.".

  4. <html><head><script type="text/javascript">function insRow(){var x=document.getElementById('myTable').insertRow(0)var y=x.insertCell(0)var z=x.insertCell(1)y.innerHTML="<input>"z.innerHTML="<input>"}</script><script type="text/javascript">function deleteRow(i){document.getElementById('myTable').deleteRow(i)}</script></head><body><table id="myTable" border="1"><tr><td><input></td><td><input></td></tr><tr><td><input></td><td><input></td></tr><tr><td><input></td><td><input></td></tr><tr><td><input></td><td><input></td></tr><tr><td><input></td><td><input></td></tr></table><form><input type="button" onclick="insRow()" value="Insert row"><input type="button" value="Delete Row" onclick="deleteRow(this.parentNode.parentNode.rowIndex)"></form></body></html>
    Its a note manager usefull to write stuff down tempoary
  5. I made a template for beginners

    <!--Copyright to Zachary www.freewebs.com/runescapex4/index.htmlthis version may be used by the publicDo not remove the copyright--><html><head><title>Someone's Website</title></head><body><table border"0" align="Middle"><tr><td><p align="Middle">Title Here.</p></td></tr></table><table border="0"><tr><th>Navagation Menu:</th></tr><tr><td><a href="">Link One</a><br><a href="">Link Two</a><br><a href="">Link Three</a><br><a href="">Link Four</a></td></tr></table><table border="1"><tr><th>Check This Cool<br /> Website Out!</th></tr><tr><td><img src="img url" alt="" align="left" /></td></tr></table></body><small><p>© Copyright 2006 My company,inc. All Rights Reservred.</p></small></html>
    Change this
  6. my code works for ie and firefox

    <html><head><script type="text/javascript">function disable(){if (event.button == 2){alert("Copright 2005-2006 my company, inc")}}</script></head><body onmousedown="disable()"></body></html>
    Change red to your popup messageDo NOT change the blue
  7. let me rewrite it for you

    <html> <head>  <body bgcolor="#333333">   <FRAMESET COLS="20%,80%">    <FRAME SRC="menu.htm" name=S>      <FRAME SRC="main.htm" name=T>     </FRAMESET>    </head>     <font color="white">         <p>    blahblahblah    <p>    </font>  </body></html>

  8. Can someone rewrite this code for me so it will pop up on load notclick the button?

    <html><head><script type="text/javascript">function disp_prompt(){var name=prompt("Please enter your name","")if (name!=null && name!=""){document.write("Hello " + name + "! How are you today?")}}</script></head><body><form><input type="button" onclick="disp_prompt()" value="Display a prompt box"></form></body></html>
×
×
  • Create New...