-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (32 loc) · 1.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Love Proposal Generator</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1>💖 Love Proposal Generator 💖</h1>
<form id="proposalForm">
<label for="name">Enter the person's name:</label>
<input type="text" id="name" required>
<label for="favorite">What are their favorite things? (e.g., coffee, books):</label>
<input type="text" id="favorite" required>
<label for="style">Choose a proposal style:</label>
<select id="style" required>
<option value="romantic">Romantic</option>
<option value="funny">Funny</option>
<option value="poetic">Poetic</option>
</select>
<button type="submit">Generate Proposal</button>
</form>
<div id="proposalOutput">
<h2>Your Proposal:</h2>
<p id="proposalText"></p>
</div>
</div>
<script src="script.js"></script>
</body>
</html>