-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
132 lines (128 loc) · 2.4 KB
/
index.html
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
<style>
a:link {
text-decoration:none;
color: black;
}
a:visited {
text-decoration: none;
color: black;
}
a:hover {
text-decoration: underline;
color: black;
}
a:active {
text-decoration: underline;
color: black;
}
#about{
position:relative;
left: 30px;
}
#store{
position: relative;
left: 30px
}
#Gmail{
position:absolute;
right: 10px;
}
#Images{
position: absolute;
right: 60px;
}
#google{
position: relative;
top: 70px;
left: 45%;
}
.searchbar{
position: relative;
top: 80px;
left: 45.4%;
height: 30px;
width: 250px;
background-color:white;
z-index:0;
}
.searchbar::after{
background-color: white;
content: "";
position:absolute;
width:12%;
height:100%;
border-radius: 50%;
top: 0%;
left: 95%;
z-index:0;
}
.searchbar::before{
background-color: white;
content: "";
position:absolute;
width:12%;
height:100%;
border-radius: 50%;
top: 0%;
left: -5%;
z-index:0;
}
.searchbarborder{
position: absolute;
top: 202.5px;
left: 45.45%;
height: 32px;
width: 250px;
background-color:LightGray;
z-index:-1;
}
.searchbarborder::after{
background-color: LightGray;
content: "";
position:absolute;
width:12%;
height:100%;
border-radius: 50%;
top: 0%;
left: 95%;
z-index:-1;
}
.searchbarborder::before{
background-color: LightGray;
content: "";
position:absolute;
width:12%;
height:100%;
border-radius: 50%;
top: 0%;
left: -5%;
z-index:-1;
}
.searchlogo{
position: absolute;
top: 208.5px;
left: 45%;
height: 20px;
width: 20px;
z-index:1;
}
.search{
position:absolute;
top: 208.5px;
left: 47%;
z-index:3;
width: 13%;
border: 0;
}
</style>
<div id="topLinks">
<a href="https://about.google/?fg=1&utm_source=google-US&utm_medium=referral&utm_campaign=hp-header" id="about">About</a>
<a href ="https://store.google.com/US/?utm_source=hp_header&utm_medium=google_ooo&utm_campaign=GS100042&hl=en-US" id = "store">Store</a>
<a href ="https://mail.google.com/mail/u/0/?tab=wm&ogbl" id = "Gmail">Gmail</a>
<a href ="https://www.google.com/imghp?hl=en&tab=wi&authuser=0&ogbl" id = "Images">Images</a>
</div>
<img src = "https://www.google.com/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png" id ="google">
<img src="https://i.imgur.com/mXJl80N.png" class ="searchlogo">
<input type="text" class="search">
<div class = "searchbar"></div>
<div class = "searchbarborder"</div>