Tech Study

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

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)

TaggedBingetc)How to create some links to various search engines (googlelycosyahoo

Java Final keyword

Introduction : java final keyword The final keyword present in Java programming language is generally used for restricting the user. …

Read more

C++ Memory Management: new and delete

C++ Memory Management We know that arrays store contiguous and the same type of memory blocks, so memory is allocated …

Read more