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 trialDoug Devitre
16,516 PointsThe 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
Treehouse StaffHey 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
16,516 PointsThank 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!