Private server ip address html

Asked 1 years ago, Updated 1 years ago, 87 views

To create a link to the address file on my server ip html to do?

html server link

2022-09-22 16:46

2 Answers

We need something called web server to do the part you asked.

The main function of the web server is to deliver html documents to the client (ex Internet Explorer, Chrome).

Simple HTML documents have static internal content. In other words, a document created once will not change unless it is modified. This creates dynamic content through server-side scripting language or server-side language to dynamically represent internal content.

To sum up,

The Web server must be installed on a server with an ip of 12.345.67.89.

You can call the HTML document through the web server.


2022-09-22 16:46

You can do it as below. For more information, see here.

<a href="http://www.w3schools.com/html/html_links.asp"> Read more here.</a>
<a href="ip">link text</a>


2022-09-22 16:46

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.