+ 1
How can we link two web pages created in html?
5 Antworten
+ 2
>a.html:
<hmtl>
<head>
<title> Page A </title>
</head>
<body>
<a href="b.html"> My B page </a>
</body>
</hmtl>
>b.html:
<hmtl>
<head>
<title> Page B </title>
</head>
<body>
Hello, this is page B
</body>
</hmtl>
+ 1
the easiest and most basic way is to put 2 .html files in one folder (e.g. let's call them a.html and b.html).
You open a.html and create a link:
> <a href="b.html"> My B page </a>
You can manipulate with styles etc. :P
0
<a href="other-page.html>This is other page<\a>
0
can you send me code to make me understand about your answer
0
please help