-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
41 lines (41 loc) · 1.02 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
<!-- /web/index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Write Your Pipeline</title>
<style>
body {
background-color: #f5f5f5;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 14px;
line-height: 1.42857143;
color: #333;
align-content: center;
}
h1 {
font-size: 24px;
font-weight: 500;
line-height: 1.1;
text-align: center;
color: #333;
}
.image-class {
display: block;
margin-left: auto;
margin-right: auto;
width: 50%;
}
</style>
</head>
<body>
<h1>My favourite dessert in Sicily</h1>
<div>
<img
src="https://www.lasicilianadal1956.it/wp-content/uploads/2021/03/cannolosicilianopiccolo.jpg" class="image-class"
/>
</div>
</body>
</html>