-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
125 lines (78 loc) · 2.27 KB
/
Copy pathindex.php
File metadata and controls
125 lines (78 loc) · 2.27 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
<!DOCTYPE html>
<html lang="">
<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> Search-Engine </title>
<!-- add icon link -->
<!-- css -->
<link rel = "icon" href ="websites-assets/img/icon_logo.png" type = "image/x-icon">
<link rel="stylesheet" href="websites-assets/css/all.min.css">
<link rel="stylesheet" href="websites-assets/css/all.css">
<link rel="stylesheet" href="websites-assets/css/bootstrap.min.css">
<link rel="stylesheet" href="websites-assets/css/style.css">
<!--js-->
<script src="websites-assets/js/jquery-3.4.1.min.js"></script>
<script src="websites-assets/js/sweetalert2.all.min.js"></script>
<script src="websites-assets/js/custom.js"></script>
</head>
<body>
<style>
* {
margin: auto;
padding: 0px;
box-sizing: border-box;
}
body {
height: 90vh;
background-image: linear-gradient(to bottom right, red, yellow);
}
.main {
max-width: 800px;
display: flex;
align-items: center;
justify-content: center;
width: 70vw;
margin-top: -59px;
height: 90vh;
}
.s_input {
height: 50px;
border: none;
outline: none;
border-radius: 4px 0px 0px 4px;
width: 100%;
padding: 11px;
font-size: 13pt;
}
.s_input::placeholder {
color: black;
}
.b_button {
height: 50px;
border: none;
outline: none;
border-radius: 0px 4px 4px 0px;
width: 3rem;
color: black;
background-color: white;
}
.btn_sign_in{
padding-top: 30px;
padding-left: 1220px;
}
</style>
<div class="btn_sign_in">
<a class="btn btn-warning btn-lg" href="login.php">Sign In</a>
</div>
<form method="get" action="search.php">
<div class="main">
<input name="search" placeholder="Search .." class="s_input" required /><button type="submit" id="" class="b_button"><i class="fas fa-search"></i></button>
</div>
</form>
<!-- js -->
<script src="websites-assets/js/bootstrap.min.js"></script>
<script src="websites-assets/js/bootstrap.bundle.min.js"></script>
</body>
</html>