-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (61 loc) · 2.4 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<title>Item Name & Description Generator</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Item Name & Description Generator</h1>
</header>
<main>
<form>
<h2>Select Cuisine:</h2>
<nav>
<label><input type="radio" name="cuisine" value="Chinese">Chinese</label>
<label><input type="radio" name="cuisine" value="Indian">Indian</label>
<label><input type="radio" name="cuisine" value="Fish and Chips">Fish and Chips</label>
<label><input type="radio" name="cuisine" value="Pizza">Pizza</label>
<label><input type="radio" name="cuisine" value="Kebab">Kebab</label>
<label><input type="radio" name="cuisine" value="Thai">Thai</label>
<label><input type="radio" name="cuisine" value="Chicken">Chicken</label>
<label><input type="radio" name="cuisine" value="Burgers">Burgers</label>
<label><input type="radio" name="cuisine" value="Other">Other</label>
</nav>
<div class="category-container">
<h2>Category:</h2>
<input type="text" id="category-input" placeholder="Enter category (e.g. Appetizer, Main Course, Dessert)" style="width: 400px;">
</div>
<div class="ingredient-container">
<h2 for="ingredient-input">Ingredients:</h2>
<input type="text" id="ingredient-input" placeholder="Enter your ingredients here (e.g. chicken, broccoli, garlic)" style="width: 400px;">
</div>
<div class="tone-container">
<label for="tone-select">Tone of Voice/Style:</label>
<select id="tone-select">
<option value="Formal">Formal</option>
<option value="Playful">Playful</option>
<option value="Descriptive">Descriptive</option>
<option value="Persuasive">Persuasive</option>
<option value="Conversational">Conversational</option>
<option value="Minimalistic">Minimalistic</option>
</select>
</div>
<div class="other-cuisine-container" style="display: none;">
<label for="other-cuisine-input">Enter Cuisine:</label>
<input type="text" id="other-cuisine-input" placeholder="Enter the cuisine here" style="width: 400px;">
</div>
<button type="button" id="generate-button">Generate Item Name & Description</button>
</form>
<div id="output-container">
<h2 id="output-title"></h2>
<p id="output-description"></p>
</div>
</main>
<footer>
<!-- Footer content goes here -->
</footer>
<!-- JavaScript -->
<script src="scripts.js"></script>
</body>
</html>