-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (40 loc) · 866 Bytes
/
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
45
46
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>funny canvas</title>
<style>
body {
margin: 0;
overflow: hidden;
background: black;
}
div {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
h1 {
color: white;
text-align: center;
font-family: Arial;
font-size: 144px;
}
p {
color: white;
text-align: center;
font-family: Arial;
}
</style>
</head>
<body>
<div>
<h1>funny canvas</h1>
<p>very cool</p>
<img height=50 width=50
src="https://preview.redd.it/snut2ed4ulr91.png?auto=webp&s=f615020694ccf20031e548244eec15ab8e28480a">
</div>
</body>
</html>