DEV Community

Discussion on: Help.

Collapse
 
mranyx profile image
MrAnyx

Could you give us more informations. Which technology are you using : React, Vue, Php, plain html ... Are you using a framework : symfony, laravel, express ... Without those information, we will not be able to help you 😔

Collapse
 
ireti03 profile image
Iretii

I'm using just html and CSS. It's a check in application for booking train tickets

Collapse
 
mranyx profile image
MrAnyx

If you're using html and css, you can create multiple html files. Then you can call them using a tags like this.

Assuming you have 2 files one called index.html and one called ticket.html

In the index.html file you can call the ticket.html file using this :

<!-- rest of your code -->

<a href="ticket.html">link</a>

<!-- rest of your code -->
Thread Thread
 
ireti03 profile image
Iretii

Oh wow, this sounds pretty simple. Thank youu