How to create some links to various search engines (google, yahoo, Bing, lycos, etc)

Topics

Introduction

How to create some links to various search engines (google, yahoo, Bing, lycos, etc)

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>www.techstudy.org</title> 
</head>
 
<body>
<a href="http://www.google.com"> Search the web with Google!</a>
<br /><br />
 
<a href="http://www.yahoo.com">Search the web with Yahoo!</a>
<br /><br />
 
<a href="http://www.bing.com">Search the web with Bing!</a>
<br /><br />
 
<a href="http://www.lycos.com">Search the web with Lycos!</a>
 
</body>
</html>
</html>

Result

How to create some links to various search engines (google, yahoo, Bing, lycos, etc)
How to create some links to various search engines (google, yahoo, Bing, lycos, etc)

Leave a Comment