-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwine_selection.html
159 lines (149 loc) · 4.05 KB
/
wine_selection.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
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Wine Selection at Landon Winery</title>
<!-- Required scripts and styles -->
<!-- PROD -->
<script
data-pap-id="access-point-1724973073230-29ec4e20-f431-4e8f-bfcc-a5fa371df094"
type="module"
crossorigin
src="https://ai-workforce.intelligage.net/assets/main-DA9GCagc.js "
data-homebase-url="https://ai-worker.intelligage.workers.dev"
></script>
<link
rel="stylesheet"
crossorigin
href="https://ai-thing.pages.dev/assets/main-DjNccSQj.css"
/>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f0f8ff; /* Light sky blue background for a fun vibe */
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
height: 100vh;
color: #4b0082; /* Indigo text color for fun contrast */
}
.container {
background-color: #fff;
padding: 20px;
border-radius: 15px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
width: 400px;
text-align: center;
}
h1 {
color: #ff4500; /* OrangeRed title color */
}
.wine-item {
margin-top: 20px;
text-align: left;
}
input[type="radio"] {
margin-right: 10px;
}
button {
width: 100%;
padding: 10px;
margin-top: 20px;
border-radius: 5px;
border: 2px solid #ff4500;
background-color: #ff4500;
color: #fff;
cursor: pointer;
}
button:hover {
background-color: #ff6347; /* Tomato color on hover */
}
.wine-description {
margin-top: 20px;
text-align: left;
}
img.winery-image {
width: 80%;
border-radius: 15px;
margin-bottom: 20px;
}
.video {
left: 4em;
top: 4em;
background-color: black;
color: white;
position: absolute;
padding: 20px;
margin-right: 5em;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
width: 300px;
}
</style>
</head>
<body>
<img
src="https://cdn2.hubspot.net/hubfs/462842/Content%20-%20Inbound/Blogs/BLOG%20-%205%20Things%20Winning%20Wineries%20Get%20Right.jpg"
alt="Winery Image"
class="winery-image"
/>
<div class="container">
<h1>Choose Your Wine at Landon Winery</h1>
<div class="wine-item">
<input
type="radio"
id="PINOT_GRIGIO"
name="wine-kind"
value="PINOT_GRIGIO"
/>
<label for="PINOT_GRIGIO"
>PINOT GRIGIO | Light dry, pleasingly tart with softening hints of
melon</label
>
</div>
<div class="wine-item">
<input
type="radio"
id="SAUVIGNON_BLANC"
name="wine-kind"
value="SAUVIGNON_BLANC"
/>
<label for="SAUVIGNON_BLANC"
>SAUVIGNON BLANC | Herbal aromas of gooseberry & honeydew; tart crisp
flavor, clean dry finish</label
>
</div>
<div class="wine-item">
<input
type="radio"
id="CHARDONNAY"
name="wine-kind"
value="CHARDONNAY"
/>
<label for="CHARDONNAY"
>CHARDONNAY | Fresh, buttery wine with tropical citrus aromas &
flavors</label
>
</div>
<button onclick="showSelectedWine()">Select Wine</button>
<div class="wine-description" id="wine-description"></div>
</div>
<div class="video">
Video
<video id="video" />
</div>
<script>
function showSelectedWine() {
let selectedWine = document.querySelector(
'input[name="wine"]:checked'
).value;
document.getElementById("wine-description").innerText =
"You selected: " + selectedWine;
}
</script>
</body>
</html>