-
Notifications
You must be signed in to change notification settings - Fork 19
/
logo.html
49 lines (42 loc) · 873 Bytes
/
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
46
47
48
49
<!DOCTYPE html>
<html>
<head>
<title>logo</title>
<style>
@font-face {
font-family: 'beyond';
src: url('./fonts/bahaus.otf');
}
body {
display: -webkit-flex;
display: -moz-flex;
display: -ms-flex;
display: -o-flex;
display: flex;
justify-content: center;
height: 100%;
margin-top: 10%;
}
h1 {
color: #1e0a3c;
font-size: 40px;
letter-spacing: 1px;
font-family: "beyond";
line-height: 20px;
height: 100%;
}
h1 span:nth-child(3) {
color: #d79922;
/* ea148c*/
}
</style>
</head>
<body>
<h1>
<img src="images/p.png" alt="logo" width="30" height="30" style="margin-top: -10px">
<span>B</span>
<span>U</span>
<span>S</span>
</h1>
</body>
</html>