Jump to content

jlhaslip

Members
  • Posts

    2,568
  • Joined

  • Last visited

Posts posted by jlhaslip

  1. <html><body><form action="MAILTO:someone@w3schools.com" method="post" enctype="text/plain"><h3>This form sends an e-mail to W3Schools.</h3>Name:<br><input type="text" name="name"value="yourname" size="20"><br>Mail:<br><input type="text" name="mail"value="yourmail" size="20"><br>Comment:<br><input type="text" name="comment"value="yourcomment" size="40"><br><br><input type="submit" value="Send"><input type="reset" value="Reset"></form></body></html>

    This form??? It sends an email to "someone@w3schools.com". If you change the address to reflect your owm email address, or your friend's address, the form will appear in your emails.Please note that there is no validating of the user input and therefore, no security in this form. I would suggest you search the net for a more secure email form. This form is okay as a Tutorial form, but it isn't as secure as you need it to be on the 'live' web.

  2. There are 4 Doc type declarations and at least 2 sets of <body> tags on that page. 19 errors at the w3c validator. check to see if the wordpress included files each contain a DTD and remove them from the includes.It isn't even close to being valid, so fix those couple of things and then come on back. There is no sense in us trying to guess what is happening on that page until the most obvious errors are fixed.

  3. z-index as a negative number??? or is it due to the Image being a background to an empty div??? Try placing the image into the div to see if that works, instead of a background image..

  4. Primal, link us to your page or post the code in its entirety so we don't have to guess. And using tables for page structure is not the right way according to the w3c. Tables are for presentation of 'tabular' data. Images are not 'tabular' data.

  5. Can you remove the authorization requirement on that link up there, please?and what is this all about"

    #master	{	background-color: #FFFFFF;	position:absolute;	width: 800px;	height: auto;	top:0px;	left:50%;	margin-left:-400px;	}

    In particular, the last two lines of css...

  6. <h1>heading</h1><h2> sub heading </h2><div> body of text </div>

    Now set your css to the h1, h2 and div tags similar to your posted css.

    h1{font-family:new times roman;font-weight:600;color:#00cc00;text-align:left;font-size:18pt;}h2{font-family:new times roman;font-weight: normal;color:#0000ff;text-align:left;font-size:14pt}div{font-family:new times roman;font-style:italic;font-weight:normal;color:#0000ff;text-align: left;font-size:12pt}

×
×
  • Create New...