Calling the search engine in the page takes Baidu as an example

Calling the search engine in the page takes Baidu as an example
Today, it suddenly occurred to me that it would be cool to call powerful search engines like Google and Baidu on my own web pages.

So I looked up information online, and I didn’t expect it to be just a matter of a few lines of code.

The following is a code snippet that calls Baidu:

Copy code
The code is as follows:

<!--Call Baidu engine in the page-->
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Calling Baidu Engine</title>
</head>
<body>
<div id="container">
<form action="http://www.baidu.com/baidu" target="_blank">
<div align="center">
<input name=tn type=hidden value=baidu>
<a href="http://www.baidu.com/">
<img src="upload/2022/web/baidulogo_clarity_80_29.gif" alt="Baidu" align="bottom" border="0"></a>
<input type=text name=word size=30>
<input type="submit" value="Baidu search"></div>
</form>
</div>
</body>
</html>

How about it? Simple enough, I was wondering how difficult it would be.

<<:  Summary of new usage examples of computed in Vue3

>>:  Use CSS to achieve three-column adaptive layout (fixed width on both sides, adaptive in the middle)

Recommend

Implementation of k8s node rejoining the master cluster

1. Delete node Execute kubectl delete node node01...

Steps to create your own YUM repository

To put it simply, the IP of the virtual machine u...

Detailed explanation of the use of MySQL DML statements

Preface: In the previous article, we mainly intro...

How to choose and use PNG, JPG, and GIF as web image formats

So which one of these formats, GIF, PNG, and JPG,...

JavaScript anti-shake and throttling detailed explanation

Table of contents Debounce Throttle Summarize Deb...

Sample code for automatic web page refresh and automatic jump

Automatic web page refresh: Add the following code...

Understand the basics of Navicat for MySQL in one article

Table of contents 1. Database Operation 2. Data T...

Best Practices for Deploying ELK7.3.0 Log Collection Service with Docker

Write at the beginning This article only covers E...

Solution to the low writing efficiency of AIX mounted NFS

Services provided by NFS Mount: Enable the /usr/s...

translate(-50%,-50%) in CSS achieves horizontal and vertical centering effect

translate(-50%,-50%) attributes: Move it up and l...

Detailed tutorial on building nextcloud private cloud storage network disk

Nextcloud is an open source and free private clou...

Analysis of product status in interactive design that cannot be ignored in design

In the process of product design, designers always...

CSS implements five common 2D transformations

2D transformations in CSS allow us to perform som...