-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgoogle_logo.html
More file actions
32 lines (32 loc) · 924 Bytes
/
google_logo.html
File metadata and controls
32 lines (32 loc) · 924 Bytes
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
<html>
<head>
<title>Google logo</title>
<style>
.google{
width: 300px;
height: 300px;
border-top: 100px solid #e43e2b;
border-left: 100px solid #f0b501;
border-bottom: 100px solid #2ba24c;
border-right: 100px solid #3b7ded;
border-radius: 50%;
background-color: white;
position: relative;
}
.google:after{
content: '';
z-index: 101;
position: absolute;
right: -100px;
top: -77px;
border-top: 200px solid transparent;
border-right: 300px solid white;
width: 0;
height: 0;
}
</style>
</head>
<body>
<div class="google"></div>
</body>
</html>