DEV Community

Discussion on: Help.

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