-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathyoutube-logo.html
45 lines (40 loc) · 1.04 KB
/
youtube-logo.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
<!DOCTYPE html>
<html>
<head>
<title>Youtube Logo</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
.youtube{
border: 3px solid transparent;
border-radius: 25px;
background: #ff0000;
width: 250px;
height: 150px;
}
.youtube .play{
position: relative;
top: 40px;
left: 100px;
width: 0;
height: 0;
border-top: 40px solid transparent;
border-bottom: 40px solid transparent;
border-left: 60px solid #ffffff;
}
.youtube .corner{
width: 100px;
height: 100px;
border-top-left-radius: 100% solid #ff0000;
}
</style>
</head>
<body>
<div class="youtube">
<div class="play">
</div>
<div class="corner">
</div>
</div>
</body>
</html>