-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathbeats-logo.html
41 lines (36 loc) · 918 Bytes
/
beats-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
<!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>Beats Logo - CSS</title>
<style>
@font-face {
font-family: 'beats';
src: url('./fonts/Biysk.ttf');
}
.beats {
height: 60px;
width: 60px;
line-height: 58px;
font-family: beats;
font-weight: 900;
background: #ed1c24;
border-radius: 50%;
}
.beats span {
font-size: 4.1em;
color: white;
margin-left: 14px;
}
</style>
</head>
<body>
<div class="container">
<div class="beats">
<span>b</span>
</div>
</div>
</body>
</html>