-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
44 lines (43 loc) · 1.19 KB
/
index.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Buddy Guide - Hello World</title>
<link href="https://fonts.googleapis.com/css?family=Droid+Sans+Mono" rel="stylesheet">
<style type="text/css">
html {
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
height: 100%;
}
body {
font-family: 'Droid Sans Mono', Consolas, "Courier New", monospace;
background-color: #fff;
box-sizing: border-box;
margin: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100%;
color: #000;
}
.bg-black {
background-color: #000;
color: #fff;
}
.hello-world {
font-size: 92px;
}
.hello-world span:first-child {
color: #f92672;
}
.hello-world span:last-child {
color: #a6e22e;
}
</style>
</head>
<body class="bg-black">
<p class="hello-world"><<span>hello</span><span>-world</span> /></p>
</body>
</html>