forked from 7R41N33/hello-world
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (44 loc) · 930 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
<!DOCTYPE html>
<html>
<head>
<title>Welcome to uffizzi!!!</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: sans-serif;
}
.app {
display: flex;
flex-direction: column;
align-items: center;
}
.logo {
height: 100px;
width: 181px;
margin: 50px 0 0 0;
}
.title {
margin: 68px 0 0 0;
font-size: 38px;
line-height: 41px;
letter-spacing: 0.2px;
}
.description {
margin: 33px 0 0 0;
letter-spacing: 0.9px;
font-size: 19px;
}
</style>
</head>
<body>
<div class="app">
<img src="images/logo.svg" class="logo" alt="uffizzi logo">
<h1 class="title">Hello, World!</h1>
<p class="description">If you're seeing this page, then your hello-world container was successfully deployed.</p>
</div>
</body>
</html>