-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathcoco-chanel-logo.html
More file actions
47 lines (43 loc) · 1 KB
/
coco-chanel-logo.html
File metadata and controls
47 lines (43 loc) · 1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Coco Chanel Logo - CSS</title>
<style>
.c {
position: absolute;
font-size: 5em;
font-family: arial;
}
.l {
left: 55px;
-webkit-transform: scale(-1, 1);
}
.r {
left: 68px;
}
.clabel {
position: absolute;
top: 70px;
font-weight: bold;
font-family: arial;
letter-spacing: 15px;
}
</style>
</head>
<body>
<div class="container">
<div class="chanel">
<span class="c r">
c
</span>
<span class="c l">
c
</span><br/>
<p class="clabel">CHANEL</p>
</div>
</div>
</body>
</html>