-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgoogleclone.html
More file actions
70 lines (68 loc) · 1.66 KB
/
googleclone.html
File metadata and controls
70 lines (68 loc) · 1.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Practice</title>
<link href='https://fonts.googleapis.com/css?family=Poppins' rel='stylesheet'>
<style>
ul li{
display: inline;
float: right;
margin: 10px;
margin-right: 30px;
}
ul li a{
text-decoration: none;
font-family: 'poppins';
color: black;
}
input{
margin-top: 100px;
width: 500px;
height: 50px;
border-radius: 4cm;
border: solid rgb(126, 118, 118);
font-family: 'poppins';
}
button{
padding: 10px;
margin: 20px;
width: 200px;
font-family: 'poppins';
border-radius: 5px;
border: none;
}
footer{
font-family: 'poppins';
}
img{
margin-top: 150px;
}
</style>
</head>
<body>
<div class="heade">
<ul>
<li><a href="#">more</a></li>
<li><a href="#">labs</a></li>
<li><a href="#">image</a></li>
<li><a href="#">gmail</a></li>
</ul>
<center>
<form action="https://www.google.com/search">
<center><input type="text" name="q" id="searchh"><br></center>
<button onclick="search()">Google Search</button>
<footer>
<p>© Mudit Web Workers. All rights reserved</p>
</footer>
</form>
</center>
<script>
function search(){
x= document.getElementById("searchh").value
alert("You are searching for "+x+ ". Mudit Web Workers Search Engine.")
}
</script>
</body>
</html>