Hello friends, I want to combine 2 pages with each other. For example, I added an online ticket booking iframe to the page http://guvenlikelemanlari.com/tr/. When I click on "book a trip" there, there is no change on the redirected 2nd page (http://guvenlikelemanlari.com/tr/bilet-al/). How can I perform this task? I would appreciate it if you could help. Below are the relevant codes that I added.
Homepage code (1st code):
```css
* { box-sizing: border-box; }
input[type=text], select, textarea, input[type=date] {
width: 100%;
padding: 12px;
border: 1px solid #ccc;
border-radius: 4px;
resize: vertical;
}
label {
padding: 12px 12px 12px 0;
display: inline-block;
}
input[type=submit] {
background-color: #4CAF50;
color: white;
padding: 12px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
float: right;
}
input[type=submit]:hover {
background-color: #45a049;
}
.container {
border-radius: 5px;
background-color: #f2f2f2;
padding: 20px;
}
.col-25 {
float: left;
width: 25%;
margin-top: 6px;
}
.col-75 {
float: left;
width: 75%;
margin-top: 6px;
}
.row:after {
content: "";
display: table;
clear: both;
}
@media screen and (max-width: 600px) {
.col-25, .col-75, input[type=submit] {
width: 100%;
margin-top: 0;
}
}
```
From where: BURSA, ESK??EH?R, SAB?HA GÖKÇEN, 3. YEN? ?ST HAVAL?MANI, YALOVA, GEML?K, HAREM OTOGAR, YALOVA OKS?JEN, KURTKÖY TERM?NAL, ORHANGAZ? OKS?JEN, PEND?K SAB?HA GÖKÇEN, ORHANGAZ?
To: BURSA, ESK??EH?R, SAB?HA GÖKÇEN, 3. YEN? ?ST HAVAL?MANI, YALOVA, GEML?K, HAREM OTOGAR, YALOVA OKS?JEN, KURTKÖY TERM?NAL, ORHANGAZ? OKS?JEN, PEND?K SAB?HA GÖKÇEN, ORHANGAZ?
Date
Redirected Page (2nd code):
To make the original code dynamic, I made 4 different changes but still no success. Original CODE
1st TRY CODE
```html
&to=&date=" onrender=" frameborder="0" scrolling="no">
```
2nd TRY CODE
4th TRY CODE
Homepage code (1st code):
```css
* { box-sizing: border-box; }
input[type=text], select, textarea, input[type=date] {
width: 100%;
padding: 12px;
border: 1px solid #ccc;
border-radius: 4px;
resize: vertical;
}
label {
padding: 12px 12px 12px 0;
display: inline-block;
}
input[type=submit] {
background-color: #4CAF50;
color: white;
padding: 12px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
float: right;
}
input[type=submit]:hover {
background-color: #45a049;
}
.container {
border-radius: 5px;
background-color: #f2f2f2;
padding: 20px;
}
.col-25 {
float: left;
width: 25%;
margin-top: 6px;
}
.col-75 {
float: left;
width: 75%;
margin-top: 6px;
}
.row:after {
content: "";
display: table;
clear: both;
}
@media screen and (max-width: 600px) {
.col-25, .col-75, input[type=submit] {
width: 100%;
margin-top: 0;
}
}
```
From where: BURSA, ESK??EH?R, SAB?HA GÖKÇEN, 3. YEN? ?ST HAVAL?MANI, YALOVA, GEML?K, HAREM OTOGAR, YALOVA OKS?JEN, KURTKÖY TERM?NAL, ORHANGAZ? OKS?JEN, PEND?K SAB?HA GÖKÇEN, ORHANGAZ?
To: BURSA, ESK??EH?R, SAB?HA GÖKÇEN, 3. YEN? ?ST HAVAL?MANI, YALOVA, GEML?K, HAREM OTOGAR, YALOVA OKS?JEN, KURTKÖY TERM?NAL, ORHANGAZ? OKS?JEN, PEND?K SAB?HA GÖKÇEN, ORHANGAZ?
Date
Redirected Page (2nd code):
To make the original code dynamic, I made 4 different changes but still no success. Original CODE
1st TRY CODE
```html
&to=&date=" onrender=" frameborder="0" scrolling="no">
```
2nd TRY CODE
4th TRY CODE