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

C String Functions

C String Functions perform certain operations, It provides many useful string functions which can come into action. The <string.h> header …

Read more

Function Pointer in C++

Introduction : Function Pointer in C++ Pointers: In function pointer in c++ are the variables that consist of addresses of …

Read more