-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
143 lines (130 loc) · 4.12 KB
/
Copy pathindex.html
File metadata and controls
143 lines (130 loc) · 4.12 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<!doctype html>
<html>
<head>
<title>Home</title>
<link rel="icon" href="p.png" type="image/gif" sizes="16x16">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="home.css" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<style>
input[type=text] {
width: 100%;
box-sizing: border-box;
box-shadow: 0px 10px 10px rgba(0,0,0,0.2);
border: 1px #ccc;
border-radius: 25px;
font-size: 14px;
background-color: white;
background-image: url('p.png');
background-size:30px 30px;
background-position: 5px 5px;
background-repeat: no-repeat;
padding: 12px 20px 12px 40px;
-webkit-transition: width 0.4s ease-in-out;
transition: width 0.4s ease-in-out;
outline: none;
}
body
{
overflow: hidden;
}
option{
font-size:10px;
}
.btn-group-sm > .btn, .btn-sm{
padding: .25rem .5rem;
font-size: .875rem;
line-height: 1.5;
box-shadow: 0px 10px 10px rgba(0,0,0,0.2);
width: 100p;
outline: none;
border-radius: 25px;
}
.fa{
padding: 10px;
font-size: 30px;
width: 50px;
border-radius: 50%;
text-align: center;
text-decoration: none;
margin: 5px 2px;
color: black;
}
.fa:hover{
opacity: 0.9;
}
</style>
</head>
<body style="background-color:#F9F9FA">
<section class="container">
<center>
<div class="fullBackground"></div>
<h2 class="caption"><font color="black">Webnet Official</font>
<form name=searchform onSubmit="return dosearch()">
<select name=sengines class="btn btn-light btn-sm">
<option value="http://www.google.com/search?q=" selected>Google</option>
<option value="http://search.yahoo.com/search?p=">Yahoo!</option>
<option value="http://www.bing.com/search?q=">Bing</option>
<option value="https://duckduckgo.com/?q=">DuckDuckGo</option></select>
<input type=text placeholder="Enter your search..." required name=searchterms>
</form>
<br>
<div class="boommarks">
<div class="row">
<div class="col-md-4">
<div class="site" title="Gmail">
<i class="fa fa-envelope-o"></i>
<p><a href="https://mail.google.com" style="text-decoration:none;"><font color="black">Gmail</font></a></p>
</div>
</div>
<div class="col-md-4">
<div class="site" title="Facebook">
<i class="fa fa-facebook-square"></i>
<p><a href="https://www.facebook.com" style="text-decoration:none;"><font color="black">Facebook</font></a></p>
</div>
</div>
<div class="col-md-4">
<div class="site" title="Youtube">
<i class="fa fa-youtube-play"></i>
<p><a href="https://www.youtube.com/" style="text-decoration:none;"><font color="black">Youtube</font></a></p>
</div>
</div>
<div class="col-md-4">
<div class="site" title="Instagram">
<i class="fa fa-instagram"></i>
<p><a href="https://www.instagram.com/" style="text-decoration:none;"><font color="black">Instagram</font></a></p>
</div>
</div>
<div class="col-md-4">
<div class="site" title="Whatsapp">
<i class="fa fa-whatsapp"></i>
<p><a href="https://web.whatsapp.com/" style="text-decoration:none;"><font color="black">Whatsapp</font></a></p>
</div>
</div>
<div class="col-md-4">
<div class="site" title="Add">
<i class="fa fa-plus"></i>
<p><a href="bookmarks.html" style="text-decoration:none;"><font color="black">Add Item</font></a></p>
</div>
</div>
</div>
</div>
</h2>
</center>
</section>
<script src="https://code.jquery.com/jquery-3.1.1.slim.min.js"></script>
<script>
function dosearch()
{
var b=document.searchform;
var a=b.sengines.options[b.sengines.selectedIndex].value+escape(b.searchterms.value);
window.location.href=a;
return false
}
</script>
</body>
</html>