Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

AI Build Your Own AI Image Generator

Doug Devitre
Doug Devitre
16,317 Points

The index.html file is not included in the zip file download. I can't find the html page that goes with the css as shown

can you please include the html to try this exercise? thanks a bunch. you are awesome.

2 Answers

Rohald van Merode
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree seal-36
Rohald van Merode
Treehouse Staff

Hey Doug Devitre πŸ‘‹

Thanks for bringing this to our attention! I'll bring it up with the team to see if we can add some project files to this workshop πŸ™‚ For now here's the snippet for the HTML Dustin uses in this video πŸ˜„

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="./app.css">
    <title>AI Image Generator</title>
</head>
  <body>
      <header>
          <h1>AI Image Generator</h1>
      </header>

      <section class="recents">
          <h2>R E C E N T</h2>
          <ul></ul>
      </section>

      <main></main>

      <form>
          <input type="text" id="prompt" placeholder="Generate an image with AI">
          <button>Generate</button>
      </form>
  </body>
</html>
Doug Devitre
Doug Devitre
16,317 Points

Thank you. There is another workshop where his CSS is provided and not the HTML. It's a great explanation and example. I can't wait to try it out. Have a great day!