forked from GCA-Classroom/09-prj-loreal-routine-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
90 lines (82 loc) · 3 KB
/
Copy pathindex.html
File metadata and controls
90 lines (82 loc) · 3 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>L'Oréal | Smart Routine & Product Advisor</title>
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;500;700&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"
/>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="page-wrapper">
<!------- Header / Branding ------->
<header class="site-header">
<img src="img/loreal-logo.png" alt="L'Oréal Logo" class="logo" />
<h1 class="site-title">Smart Routine & Product Advisor</h1>
</header>
<!-- Category Filter -->
<div class="search-section">
<select id="categoryFilter">
<option value="" disabled selected>Choose a Category</option>
<option value="cleanser">Cleansers</option>
<option value="moisturizer">Moisturizers & Treatments</option>
<option value="haircare">Haircare</option>
<option value="makeup">Makeup</option>
<option value="hair color">Hair Color</option>
<option value="hair styling">Hair Styling</option>
<option value="men's grooming">Men's Grooming</option>
<option value="suncare">Suncare</option>
<option value="fragrance">Fragrance</option>
</select>
</div>
<!-- Products Grid -->
<div id="productsContainer" class="products-grid"></div>
<!-- Selected Products -->
<div class="selected-products">
<h2>Selected Products</h2>
<div id="selectedProductsList"></div>
<button id="generateRoutine" class="generate-btn">
<i class="fa-solid fa-wand-magic-sparkles"></i> Generate Routine
</button>
</div>
<!------- Chat Area ------->
<section class="chatbox">
<h2>Let's Build Your Routine</h2>
<div id="chatWindow" class="chat-window"></div>
<form id="chatForm" class="chat-form">
<label for="userInput" class="visually-hidden">Message</label>
<input
id="userInput"
name="userInput"
type="text"
placeholder="Ask me about products or routines…"
autocomplete="off"
required
/>
<button type="submit" id="sendBtn">
<i class="fa-solid fa-paper-plane"></i>
<span class="visually-hidden">Send</span>
</button>
</form>
</section>
<!------- Footer Links ------->
<footer class="site-footer">
<p>© 2025 L'Oréal. All rights reserved.</p>
<nav>
<!-- These URLs are placeholders -->
<a href="#">Privacy Policy</a>
<a href="#">Terms of Use</a>
<a href="#">Contact</a>
</nav>
</footer>
</div>
<script src="script.js"></script>
</body>
</html>