Learn HTML by Building a Cat Photo App - Step 66

Tell us what’s happening:
Describe your issue in detail here.
My title wont show when i remove the title elements a header shows but when i add them in it doesnt
Your code so far


<!-- User Editable Region -->

<html>
<head> 
  <title>CatPhotoApps</title>
</head>

<body>
      <main>
        <h1>DOJA'S BLOG</h1>
        <section>
        <h2>Doja's photos</h2>
        <p>See more phots of the better cat <a href="file:///C:/Users/pc/Downloads/Snapchat-279928842.jpg" target="_blank"> Pawpi</a></p>
        <p>see more  <a href= "https://freecatphotoapp.com" target="_blank"> cat photos</a> in our gallery</p>
        <!--add link to photos-->
        <a href="https://freecatphotoapp.com" target="_blank"><img src="file:///C:/Users/pc/Downloads/20220531_055858.jpg"
          width="250" 
          height="250" alt="Me with my DOJA"></a>
        </section>
        <section>
          <h2>Cat Lists</h2>
          <h3>Things cats love:</h3>
          <ul>
            <li>cat nip</li>
            <li>laser pointers</li>
            <li>lasagna</li>
          </ul>
          <figure>
            <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/lasagna.jpg" alt="A slice of lasagna on a plate.">
            <figcaption>Cats <em>love</em><a href="https://freecatphotoapp.com"> me</a> .</figcaption>  
          </figure>
          <h3>Top 3 things cats hate:</h3>
          <ol>
            <li>flea treatment</li>
            <li>thunder</li>
            <li>other cats</li>
          </ol>
          <figure>
            <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/cats.jpg" alt="Five cats looking around a field.">
            <figcaption>Cats <strong>hate</strong> other cats.</figcaption>  
          </figure>
        </section>
        <section>
        <h2> Cat form </h2>
        <form action="prabhten@gmail.com" ></form>
         <fieldset> 
          <legend>s you cat an indoor or outdoor Cat</legend>
          <label > <input checked type="radio" id = "indoor" name="indoor-outdoor" value = "indoor">  Indoor:</label>
          <label > <input type="radio" id = "outdoor" name="indoor-outdoor" value="outdoor">  Outdoor:</label>
      </fieldset>
      <fieldset>
    
        <legend>What's you cats personality</legend>
         <input checked id ="loving" value="loving"  type ="checkbox" name = personality><label for="Loving">Loving</label>  
         <input id ="lazy" value="lazy" type ="checkbox" name = personality><label for="lazy">lazy</label>  
         <input id ="energetic" value="energetic" type ="checkbox" name = personality><label for="energetic">energetic</label>  
    </fieldset>
       
           <input type="text" name = "cat photo url" placeholder="cat photo url" required>
          <button type= "submit" >Submit</button>
        </section>
        </main> 
      <footer>
       <p>  no <a href="https://www.freecodecamp.org."> copyright </a>  prabh guron  </p>
      </footer>
   <body>
</html>


<!-- User Editable Region -->

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36

Challenge: Learn HTML by Building a Cat Photo App - Step 66

Link to the challenge:

The text enclosed in the title element seems to be wrong,it should not be in plural form.

No it just doesnt show like my h1 shows instead but not my title

That is because is should not show on your page. It should be displayed as the name of your project.

That is the way it suppose to be . It has not to be seen in your page.

1 Like

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.