-
Notifications
You must be signed in to change notification settings - Fork 0
/
Demo.html
45 lines (42 loc) Β· 1.37 KB
/
Demo.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 lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Twitter Colors</title>
<style>
body {
margin: 0;
background-color: #1da1f2; /* Twitter Blue background */
}
.logoG-txt {
font-size: 24px;
font-weight: bold;
display: inline-block;
margin-right: 2px;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Font style applied specifically to the styled elements */
color: #ffffff; /* White color for text */
}
.l, .o, .g, .t, .w, .i, .e, .r {
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; /* Similar to Twitter's original font */
}
.l { color: #00aced; } /* Twitter Blue */
.o { color: #00aced; } /* Twitter Blue */
.g { color: #00aced; } /* Twitter Blue */
.t { color: #00aced; } /* Twitter Blue */
.w { color: #00aced; } /* Twitter Blue */
.i { color: #00aced; } /* Twitter Blue */
.e { color: #00aced; } /* Twitter Blue */
.r { color: #00aced; } /* Twitter Blue */
</style>
</head>
<body>
<span class="logoG-txt l">T</span>
<span class="logoG-txt o">w</span>
<span class="logoG-txt g">i</span>
<span class="logoG-txt t">t</span>
<span class="logoG-txt w">t</span>
<span class="logoG-txt i">e</span>
<span class="logoG-txt e">r</span>
</body>
</html>