HTML
In HTML, how do you add a subpage to your website?
Zeune
Make your other html page that you want to refer to. Then, use this code
<a href ="test.html">Hello World</a>
replace "test.html" with your file and then you can also replace "Hello World" with the link text.
PythonCoder100
@Zeune Thanks!
PythonCoder100
Please help!
Click the
add file
button:This file cannot be displayed: https://storage.googleapis.com/replit/images/1552425746912_0e5d004a85aae04ac61e252009a43354.pn
And name it
about.html
or similar. Then you can write some HTML in it.Then in your index.html, you can add
to add a link to that page.
Please upvote if this helps :)
@ArchieMaclean Thanks!