-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (40 loc) · 1.38 KB
/
index.html
File metadata and controls
46 lines (40 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>AI Recommendation Engine</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<!-- =============================
TODO: Customize this for YOUR concept!
Options: Study Tips, Fitness Coach,
Outfit Recommender, Productivity Booster,
or Travel Suggestions
============================== -->
<nav>
<h2>AI Recommendation Engine</h2>
<span>Powered by AI</span>
</nav>
<section class="hero">
<h1>Your AI-Powered Recommendation Engine</h1>
<p>
Ask a question and receive personalized recommendations powered by AI.
</p>
<!-- =============================
REQUIRED ELEMENTS (Don't remove these IDs!)
- Input box (id="userInput")
- Submit button (id="askBtn")
- Display area (id="response")
============================== -->
<div class="ai-card">
<input type="text" id="userInput" placeholder="Ask me anything..." />
<button id="askBtn">Get Recommendation</button>
<div id="response">AI response will appear here...</div>
</div>
</section>
<footer>© 2026 LiveLab 10. Educational Use Only.</footer>
<script src="script.js"></script>
</body>
</html>