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
Solution Abandon the Linux virtual machine that c...
Zabbix automatically discovers rules to monitor s...
1. System environment The system version after yu...
This article shares the specific steps of VMware ...
Table of contents Preface NULL in MySQL 2 NULL oc...
Preface The database has always been my weak poin...
HTML forms are used to collect different types of...
MySQL installation tutorial for Windows system do...
Many times when learning web page development, th...
The specific code is as follows: <div id="...
This article shares the specific code of Node.js+...
Basically all e-commerce projects have the functi...
MySQL consistency log What happens to uncommitted...
Recently I saw the article Build your own React o...
There are few and inadequate installation tutoria...