Announcement

Collapse
No announcement yet.

HTML question

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • HTML question

    Was wondering if anyone else ever had a problem where your href tag doesn't work? I'm really tired as I'm working on this page for a class, and when I save the page in my text editor, when I view it on my C drive, the href tag changes.

    I'm sure it's something really simple that I'm missing, but I would appreciate a fresh pair of eyes looking at it and maybe catch my error.

    Note: The href tag I'm referring to is at the very bottom of the page. It goes from <a href="index.html">blah blah</a> to <a href="index.html>blah blah</a>. So basically, it deletes the second quotation mark and doesn't let you go link back the index.html file.

    Plz help! I'm driving myself crazy!

    <html>
    <!-- Carey Tutorial
    Author: Newb
    Date: 2/5/2005
    -->
    <head>
    <title>Robert Service High School Chemistry</title>
    </head>

    <body>

    <p style="text-align: center">
    <img src="images/dube.jpg"
    alt="Mr. Dub&eacute;'s Chemistry Classes at Robert Service High School" />
    </p>

    <p style="text-align: center">
    <a href="contacts.htm">Contact Info</a> ·
    <a href="links.htm">Chemistry Links</a> ·
    <a href="#classes">Classes</a> ·
    <a href="#grading">Grading</a> ·
    <a href="#app">Appointments</a> ·
    <a href="#safety">Safety</a>
    </p>

    <hr style="color: red; background-color: red; height: 2; width: 100%" />

    <p style="text-align: center">Welcome to Mr. Dub&eacute;'s Web site. I hope you will use
    this site to learn more about your class, my expectations,
    and chemistry in the world around you.</p>

    <hr style="color: red; background-color: red; height: 2; width: 100%" />

    <h2 id="classes">Chemistry Classes</h2>
    <blockquote>
    <dl>
    <dt><b>Conceptual Chemistry</b></dt>
    <dd>An introductory course requiring
    basic math but no algebra</dd>
    <dt><b>Chemistry I</b></dt>
    <dd>An introductory course requiring
    solid algebra skills</dd>
    <dt><b>Applied Chemistry</b></dt>
    <dd>An introductory course requiring
    solid algebra skills and an interest in using critical thinking
    to solve real-world, chemistry-related problems</dd>
    <dt><b>Advanced Placement Chemistry</b></dt>
    <dd>An advanced course requiring
    a grade of A or B in Chemistry I and designed for students
    who want to prepare for the AP Chemistry exam (which can
    count toward college credits)</dd>
    </dl>
    </blockquote>

    <hr style="color: red; background-color: red; height: 2; width: 100%" />

    <h2 id="grading">Grading</h2>
    <blockquote>
    <p><i><b>Homework</b></i> will be given daily, is due
    at the beginning of the period the school day after it was assigned,
    and will be worth 5 to 10 points. A periodic quiz consisting
    of 1 or 2 homework problems from the past week may be given in lieu
    of collecting homework.</p>

    <p><i><b>Tests and quizzes</b></i> will be used to check
    your understanding of concepts, procedures, and information.
    Quizzes will be worth 10 to 25 points and will be given
    at least once a month. Tests will be worth up to 100 points
    and will be given 2 or 3 times a quarter.</p>

    <p><i><b>Labs</b></i> will be worth 10 to 30 points
    and will be graded on safety, participation, and write-up.
    I expect neat handwritten or typed reports. I'll also assign
    <i><b>small research projects</b></i> throughout the semester.</p>

    <p>You must <i><b>make up</b></i> missed tests and quizzes
    the day you return, and you must submit missed homework assignments
    and labs within two days for every one day you missed.
    Failure to make up work within these time frames will result
    in a 0 for that test or assignment.</p>
    </blockquote>

    <hr style="color: red; background-color: red; height: 2; width: 100%" />

    <h2 id="app">Appointments</h2>
    <blockquote>
    <p>I can meet with you before or after school. I will also be in
    my room (H113) during most lunch hours. Please do not hesitate to
    stop in if you need extra help -- do not wait! Chemistry is a building
    subject, and it is very hard to catch up once you fall behind.</p>
    </blockquote>

    <hr style="color: red; background-color: red; height: 2; width: 100%" />

    <h2 id="safety">Safety</h2>
    <blockquote>
    <p>We will be doing lab work nearly every week. Because of the
    potential danger of any lab exercise, I will hold you
    to the highest standards of behavior, and will remove you
    from the class if you pose a threat to yourself or other students.</p>

    <ol>
    <li>Follow my written and oral directions carefully and immediately.</li>
    <li>Never perform any procedure not specifically directed
    by me or assigned in the lab.</li>
    <li>No playful behavior is permitted in the lab.</li>
    <li>Safety equipment must be worn as directed at all times,
    even if you find it uncomfortable or unbecoming.</li>
    <li>No food, drinks, or loose clothing are permitted in the lab.</li>
    </ol>
    </blockquote>

    <hr style="color: red; background-color: red; height: 2; width: 100%" />

    <p style="text-align: center>Chemistry with Dub&eacute; is like medicine with a
    spoonful of C<sub>12</sub>H<sub>22</sub>O<sub>11</sub>!</p>

    <a href="index.html">My Home Page</a>
    <br /><br />

    </body>
    </html>

  • #2
    Nvrmnd, someone helped me find my error. Feel free to close.

    Comment


    • #3
      what was the error?
      Originally posted by Kolar
      My reaction:

      ;1;Holy Shit
      ;1;Al Qaeda took care of method for us

      Comment


      • #4
        Originally posted by Due
        what was the error?
        <p style="text-align: center>Chemistry with Dub&eacute; is like medicine with a
        spoonful of C<sub>12</sub>H<sub>22</sub>O<sub>11</sub>!</p>

        <a href="index.html">My Home Page</a>
        <br /><br />

        If you notice in the first line, the <p style="text-align: center> doesn't have a close quote. it should be <p style="text-align: center">.

        What was throwing me off so badly was I had no idea that by not closing a <p style> tag, your subsequent <hr /> tag would be affected. Big thanks to Desire for the help!
        Last edited by Subjugation; 02-06-2005, 10:36 AM.

        Comment


        • #5
          An editor with color syntax highlighting will help you catch those easily.

          Comment


          • #6
            Originally posted by geekbot
            An editor with color syntax highlighting will help you catch those easily.
            :greedy:
            Code:
            1:Pred_FNM <ER>> guys, yellow + green is really shitty for forumcolours :p
            1:lnx> what's wrong with that combination
            1:lnx> I wear yellow-green clothes :(
            1:Pred_FNM <ER>> i dont mean in clothes, in forums..
            1:lnx> kk
            1:lnx> buy a black-white computer monitor if you don't like the colors foo

            Comment


            • #7
              Originally posted by geekbot
              An editor with color syntax highlighting will help you catch those easily.

              Hehe true i love to work with VIM but it takes some time to learn... all the pretty colors
              A kiss is a rosy dot over the 'i' of loving.

              Cyrano de Bergerac

              Comment


              • #8
                CuteHTML seemed quite good when I used it briefly.
                USS Banana after years of superior jav play has amassed 17999 kills, he is 1 kill away from 18k, Type ?go Javs FOR A GAME OF HUNT (no scorereset) -Kim
                ---A few minutes later---
                9:cool koen> you scorereseted
                9:Kim> UM
                9:Kim> i didn't
                9:cool koen> hahahahahahaha
                9:ph <ZH>> LOOOOL
                9:Stargazer <ER>> WHO FUCKING SCORERESET
                9:pascone> lol?

                Comment


                • #9
                  Anyone used VB on Excel? Is there some code I can use to display an error-box style pop-up?

                  Comment

                  Working...
                  X