-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdiv.html
More file actions
96 lines (93 loc) · 2 KB
/
div.html
File metadata and controls
96 lines (93 loc) · 2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
*{
padding: 0px;
margin: 0px;
}
.navbar{
display: flex;
justify-content: space-around;
background-color: black;
height: 30px;
width: 1000px;
margin-left: 250px;
}
a{
font-size: 16px;
text-decoration: none;
color: white;
transition: ease-in-out 1.2ms ;
padding-top: 5px;
}
a:hover{
background-color: aqua;
border: 1px solid black;
padding: 5px 5px 5px 5px;
color: black;
}
.searchbar{
margin-top: 100px;
}
.navbarSearch{
}
a{
margin-left: 86px;
}
#dil_tor_sho{
position: relative;
top:25px;
}
#jil{
position: absolute;
top: 100px;
left: 100px;
text-align: center;
width: 200px;
height: 200px;
border: 1px solid black;
padding: 50px;
box-shadow: 10px 10px 50px #0b0909;
transition: ease-in-out 1.2ms ;
}
aside{
position: absolute;
top: 100px;
left: 100px;
text-align: center;
width: 200px;
height: 200px;
border: 1px solid black;
padding: 50px;
box-shadow: 10px 10px 50px #0b0909;
transition: ease-in-out 1.2ms ;
}
body{
position: absolute;
}
</style>
</head>
<body>
<label id="dil_tor_sho">Search</label>
<input id="dil_tor_sho" type="text">
<div class="navbar">
<a href=""> Home</a>
<a href=""> Home</a>
<a href=""> Home</a>
<a href=""> Home</a>
<a href=""> Home</a>
<a href=""> Home</a>
<a href=""> Home</a>
<div class="searchbar">
</div>
</div>
<aside id="jil">
login<br>
<input type="text"><br>
</aside>
</body>
</html>