You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
982 B
28 lines
982 B
<!-- Making Google search and Youtube search -->
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>"Hijacking" Google & Youtube Search</title>
|
|
<link rel="stylesheet" href="app.css">
|
|
</head>
|
|
<body>
|
|
<h1>"Hijacking" Google & Youtube Search</h1>
|
|
|
|
|
|
<form action="https://www.google.com/search?q=pizaa">
|
|
<h2 id="gs"> Google search</h2>
|
|
<input type="text" placeholder="enter your search" name ="q"> <!-- use the name attribute -->
|
|
<button>Search</button>
|
|
</form>
|
|
|
|
<form action="https://www.youtube.com/results?search_query">
|
|
<h2 id="yt"> Youtube search</h2>
|
|
<input type="text" placeholder="enter your search" name ="search_query"> <!-- -->
|
|
<button>Search</button>
|
|
</form>
|
|
<p id="credit"> Designed By Bhupendra Dangwal 😀</p>
|
|
|
|
</body> |