Jump to content

Wolverine

Members
  • Posts

    55
  • Joined

  • Last visited

Everything posted by Wolverine

  1. can you post the code that is causing the error so that we can determine the problem?
  2. Try <!DOCTYPE html> <html> <head> <title>Edward Schubauer's Web Form</title> <link href="web_form_page_css.css" rel="stylesheet" type="text/css" /> <meta http-equiv="Content-Type" content ="text/html; charset=utf-8"/> </head> <body> <div align="center"> <h1> My Personal Web Form</h1> </div> <p> I have been working diligently on this website. My portal page has some sample information and my CSS page has different examples of what concepts I have learned. At this point I would greatly appreciate if I could get some feedback on my webpage with the form below for you the user to fill out! Every person that gives me feedback will allow for vital information to improve the experience on this website. As always, your time will be greatly appreciated. Thank you. </p> <form action="http://cdlwebsysdev...._form_page.html" method="post"> E-mail: <input type="hidden" name="ToAddress" value="LaC0saNostra11@gmail.com" /> <input type="hidden" name="CCAddress" value="" /> <input type="hidden" name="Subject" value="WSD: Assignmebnt 2.2-Web Form for Edward Schubauer" /> <input type="text" name="FromAddress" /> <table border="0" width="75%" align="left"> <tr> <td align="right" width="10%"><label for="CustName">Name:</label> </td> <td><input type="text" name="CustName" id="CustName" size="30" /> </td> </tr> <tr> <td align="right"><label for="CustAddress">Address:</label> </td> <td><input type="text" name="CustAddress" id="CustAddress" /> </td> </tr> <tr> <td align="right"><label for="CustCity">City:</label> </td> <td><input type="text" name="CustCity" id="CustCity" /> </td> </tr> <tr> <td align="right"><label for="CustState">State:</label> </td> <td><input type="text" name="CustState" id="CustState" /> </td> </tr> <tr> <td align="right"><label for="CustZipCode">Zip Code:</label> </td> <td><input type="text" name="CustZipCode" id="CustZipCode" /> </td> </tr> <tr> <td align="right"><label for="CustCountry">Country:</label> </td> <td><input type="text" name="CustCountry" id="CustCountry" /> </td> </tr> <tr> <td colspan="2"><label for="CustComment">Additional Feedback:</label><br /> <textarea rows="4" cols="60" name="CustComment" id="CustComment">Please enter any feedback that comes to mind.</textarea></td> </tr> <tr> <td align="right"><input type="submit" value="Send" /></td> <td><input type="reset" value="Reset" /></td> </tr> </table> <br /> <fieldset> <legend>Please rate my webpage:</legend> <br /> <br /> <input type="radio" name="Rating" id="strongly_dislike" value="strongly_dislike" /><label for="strongly_dislike">Strongly Dislike</label><br /> <input type="radio" name="Rating" id="dislike" value="dislike" /><label for="dislike">Dislike</label><br /> <input type="radio" name="Rating" id="like" value="like" /><label for="like">Like</label><br /> <input type="radio" name="Rating" id="strongly_like" value="strongly_like" /><label for="strongly_like">Strongly Like</label><br /> <input type="radio" name="Rating" id="love" value="love" /><label for="love">Love</label><br /><br /> </fieldset> </form> <br /><br /><br /><br /><br /><br /> <p> <a href="http://validator.w3....eck?uri=referer"><img src="http://www.w3.org/Icons/valid-xhtml10" alt="Valid XHTML 1.0 Transitional" height="31" width="88" /></a> </p> </body> </html> And see what happens.
  3. well you could try instead of: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR...ransitional.dtd"> <html> <head> <link type='text/css' rel='stylesheet' href='reset.css' /> <link type='text/css' rel='stylesheet' href='styles.css' /> </head> <body> <div id='wrapper'> <div id='header'> <h1>VMCS</h1> </div> <div id='nav'> <a href='http://www.apple.com'>Members</a> <a href="http:www.google.com">About Us</a> </div> <div id='content'> <h2>this is an h2 typing</h2> <p> this is the words on screen</p> </div> </div> </body> </html> body{ background-color: #121212; background-image: url(images/body.png); background-repeat: repeat-y; } #wrapper{ background-image: url(images/tapestry1.jpg); background-repeat: repeat-y; width: 900px; height: auto; margin: 2%; margin-left: auto; margin-right: auto; } h1{ color: rgba(1,1,1,.1); font-size: 4em; } #header{ background-image: url(images/headerbg.png); border-radius: 0px 128px 0px 0px; height: 310px; margin-bottom: 10px; border: 5px solid red; } a:link{ font-size: 2em; padding: 25px; margin: 40px; border: 3px solid green; } #content{ font-size: 1em; margin: 30px; height: 400px } using <!DOCTYPE html> <html> <head> <link type='text/css' rel='stylesheet' href='reset.css' /> <link type='text/css' rel='stylesheet' href='styles.css' /> </head> <body> <div id='wrapper'> <div id='header'> <h1>VMCS</h1> </div> <div id='nav'> <a href='http://www.apple.com'>Members</a> <a href="http:www.google.com">About Us</a> </div> <div id='content'> <h2>this is an h2 typing</h2> <p> this is the words on screen</p> </div> </div> </body> </html> body{ background-color: #121212; background-image: url(images/body.png); background-repeat: repeat-y; } #wrapper{ background-image: url(images/tapestry1.jpg); background-repeat: repeat-y; width: 900px; height: auto; margin: 2%; margin-left: auto; margin-right: auto; } h1{ color: rgba(1,1,1,.1); font-size: 4em; } #header{ background-image: url(images/headerbg.png); border-radius: 0px 128px 0px 0px; height: 310px; margin-bottom: 10px; border: 5px solid red; } a:link{ font-size: 2em; padding: 25px; margin: 40px; border: 3px solid green; } #content{ font-size: 1em; margin: 30px; height: 400px } for one thing. I am not sure if Xhtml supports div tags.
  4. Look for the code <hr>. It is normally a divider line and if not styled with color and height a gray line is what you get. If they used the self closing it might look like <hr/>.
  5. Put something in the class value. How does it know what class to use if you don't?
  6. Wolverine

    W3C

    It could also be that they need to be notified because some careless developer did not do what he was supposed to on a huge site.
  7. well you can fix the error on line 519<p style="text-align: justify;"><span style="color: #c8c8c8;"><br /> by making it look like: <p style="text-align: justify;"><span style="color: #c8c8c8;"></p><br /> And the error on line 35 <!- -message - -> put one space between the two dashes and that error goes away.
  8. How about use <h1 style="color"red;">Chapter one</h1> <h3 style="color"black;">Once upon a time</h3> for your headings. Otherwise I don't see any problems with your for example styles.
  9. Remove that HUGE Picture for starters.
  10. Try <iframe style="scrolling=no width=260 overflow:hidden; border:0" src="../htm/linkz.html"> and see if that works.
  11. Install OpenOffice.org or LibreOffice. 2. write first chapter 3. File Save As Kids Book.odt so you can do future revisions. 4. when finished File Export PDF
  12. It is also possible that for reasons like for example G2 says we do not know enough about HTML 5 and until we do you can't use it. So in some cases blame the Security guys.
  13. Try this:<!DOCTYPE html><html><head><title>mMain</title><style type="text/css">.mMain { width: 225px; height: 500px; border: 1px solid #FF6A00; background-color: #FF6A00; margin-left: 250px;}</style></head><body><div class="mMain"> </div></body></html>and see if it works.
  14. I do not recommend Flash. There is nothing wrong with it, but it you have to deal with accessibility problems it can get expensive. So that means HTML4 or 5 with CSS. You need training in CSS, the version of HTML that you want to use and probably JAVASCRIPT as well. GOOD LUCK!!!
  15. Take all of this out of the first two lines in your code:PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd" xmlns="http://www.w3.org/1999/xhtml" lang="en-US"and then go to this line:<link rel='stylesheet' id='googlefonts-css' href='http://fonts.googleapis.com/css?family=PT+Sans:400|Fjalla+One:400&subset=latin' type='text/css' media='all' />and just to the right of the 400 followed by &subset=latin put your cursor and hit space.Then in all the tags that look like<br> make them look like <br/> and save.
  16. Also the DOCTYPE is all wrong for the elements that you are using.If you use:<!DOCTYPE html><head></head><body></body></html>you have a basic HTML5 page and 9 of the HTML errors go away. You have them because XHTML does not support those particular elements.
  17. You are getting HTML errors like here<div id="morebutton"><a href="http://mandownclothing.com/all/"><div id="morebuttontext">VIEW ALL ></div></div></a>should be<div id="morebutton"><a href="http://mandownclothing.com/all/"></a><div id="morebuttontext">VIEW ALL></div></div>here is a list of the CSS errorshttp://jigsaw.w3.org/css-validator/validator?uri=http%3A%2F%2Fmandownclothing.com%2F&profile=css3&usermedium=all&warning=1&vextwarning=〈=en
  18. Try this URL: http://w3schools.com/html/html_youtube.asp .Also what browser are you using maybe if we know that it will help.
  19. Note Callumacrae The gifs and the example came from the CSS tutorial on Pseudo Classes here at http://www.w3schools.com. Take it up with them if they use gifs or not. I just gave what their tutorial on Pseudo Classes said.
  20. Well here is where I got my idea for using it from:<code>http://www.w3schools.com/css/css_pseudo_elements.aspCSS - The :before Pseudo-element The ":before" pseudo-element can be used to insert some content before the content of an element. The following example inserts an image before each <h1> element: Example h1:before{ content:url(smiley.gif); } Try it yourself »--------------------------------------------------------------------------------CSS - The :after Pseudo-element The ":after" pseudo-element can be used to insert some content after the content of an element. The following example inserts an image after each <h1> element:</code>
  21. Well here is a sample of my idea of why these tags might be used. <!DOCTYPE html><html><head></head><body><p>My name is Donald</p><p>I live in Ducksburg</p><p><b>Note:</b> For :after to work in IE8, a DOCTYPE must be declared.</p></body></html><!DOCTYPE html><html><head><style>p:before{content:"Read this -";}<style>p:after{content:"- Remember this";}</style></style></head><body><p>My name is Donald</p><p>I live in Ducksburg</p><p><b>Note:</b> For :before to work in IE8, a DOCTYPE must be declared.</p></body></html> For example I am a TREK fan and set up on a web page I am working on at home:<style type="text/css">p:after{content:"LIVE LONG AND PROSPER!";}</style>and at the end of every paragraph LIVE LONG AND PROSPER! appears. Which is nice to make five sentences when you can't think of a fifth. Or you could use:<style type="text/css">p:before{content:"GPL v2";}at the beginning to show what license you use.
  22. As an example here is my code so far: <!DOCTYPE html><html lang="en"> <head> <meta charset="utf-8"> <meta name="generator" content="CoffeeCup HTML Editor (www.coffeecup.com)"> <meta name="description" content=""> <meta name="keywords" content="HALLOWEEN"> <title>HAPPY HALLOWEEN</title> <style type="text/css"> <!-- body { color:#FFFFFF; background-color:#000000; } a { color:#FFFF00; } a:visited { color:#00FFFF; } a:hover { color:#00FF00; } a:active { color:#FF0000; }h1 {text-align:center;}h2 {text-align:center;}p {text-align:left;}p {text-indent:50px;} --> </style><style>p.one{border-style:solid;border-width:3px;}h1.four{border-style:inset;border-width:medium;border-color:red;}</style> <!--[if IE]> <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script> <![endif]--> </head> <body><img src="halloween34.gif" width="129" height="200" alt="HAPPY HALLOWEEN" title="HAPPY HALLOWEEN" style="border:0px solid black" /><h1>HAPPY HALLOWEEN</h1><h2>From Mark's PLACE</h2><img src="halloween54.gif" width="75" height="169" alt="Candle burning on a Jack O Lantern" title="Candle burning on a Jack O Lantern" style="border:0px solid black" align="right" /><p class="one">Hi, my name is Mark Nelson and I am a Trekker, I am interested in Star Trek, Star Wars, Science Fiction Books, Movies and TV Shows, and NEVERWINTER NIGHTS . If you are a Trekker please come here and let's stay in touch. If you are not a Trekker that is good as well. If you have some constructive criticism that will help me improve this site that is superb. I am currently trying to make a Christmas themed version of this site as well.Then if I succeed at that I will start working on an Easter themed version.</p><br /><br /><br /><br /> <P> </P> <h1 class="four">Hobbies and Interests</h1><P class="one">My Hobbies are computers, reading Science Fiction Books, playing NEVERWINTER NIGHTS and the Internet. I hope all the fans of Star Trek and NEVERWINTER NIGHTS will come here and tell me how they like my site. Live long and Prosper! If you like reading online stories I have some that I have written myself on the next page of this site and on the page after that download links for the text file versions.</P><img src="halloween7.gif" width="216" height="144" alt="HAVE A HAUNTINGLY GOOD HALLOWEEN!" title="HAVE A HAUNTINGLY GOOD HALLOWEEN!" style="border:0px solid black" /> </body></html> What I want to do is float halloween54.gif to the right side of the page but not the other two. Any ideas what I should do?
  23. Wolverine

    Signatures

    I like the signatures like I mention in my signature.
×
×
  • Create New...