Create absolute link starting with http:// in HTML and CSS

Description

The following code shows how to create absolute link starting with http://.

Example


<!--from  w  w w. jav  a2  s.c  o m-->
<!DOCTYPE HTML>
<html>
<body>
<p>
<a href="http://www.java2s.com/"> This </a>
is a link to a page on the World Wide Web.
</p>
</body>
</html>

Click to view the demo

The code above generates the following result.

Create absolute link starting with http:// in HTML and CSS