-
Notifications
You must be signed in to change notification settings - Fork 13
/
Paralex.html
54 lines (54 loc) · 1.27 KB
/
Paralex.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
47
48
49
50
51
52
53
54
<html>
<head>
<style>
body{
margin: 0;
padding: 0;
}
#box1{
height: 100vh;
width: 100%;
background-image: url(i1.jpg);
background-size: cover;
display: table;
background-attachment: fixed;
}
#box2{
height: 100vh;
width: 100%;
background-image: url(i2.jpg);
background-size: cover;
display: table;
background-attachment: fixed;
}
#box3{
height: 100vh;
width: 100%;
background-image: url(i3.jpg);
background-size: cover;
display: table;
background-attachment: fixed;
}
h1{
font-family: arial black;
font-size: 50px;
color:white;
margin: 0px;
text-align: center;
display: table-cell;
vertical-align: middle;
}
</style>
</head>
<body>
<div id="box1">
<h1>DAFT CREATION</h1>
</div>
<div id="box2">
<h1>DAFT CREATION</h1>
</div>
<div id="box3">
<h1>DAFT CREATION</h1>
</div>
</body>
</html>