HTML linkLOGIN

HTML link

This example demonstrates:

Create a link in an HTML document.

Example analysis:

<a href="http://www.php.cn/" >php Chinese website</a>

Clicking this hyperlink will take the user to the homepage of php Chinese website.

Tip: "Link text" does not have to be text. Images or other HTML elements can become links.


Next Section
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文网(www.php.cn)</title> </head> <body> <p><a href="http://www.php.cn/">php中文网</a></p> </body> </html>
submitReset Code
ChapterCourseware