forked from JibyJoseph/Basic-Html-project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathparallax.html
More file actions
54 lines (54 loc) · 1.29 KB
/
parallax.html
File metadata and controls
54 lines (54 loc) · 1.29 KB
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(../image/last1.jpg);
background-size: cover;
display: table;
background-attachment: fixed;
}
.box2{
height: 100vh;
width: 100%;
background-image: url(../image/last2.jpg);
background-size: cover;
display: table;
background-attachment: fixed;
}
.box3{
height: 100vh;
width: 100%;
background-image: url(../image/fodo1.jpg);
background-size: cover;
display: table;
background-attachment: fixed;
}
h1{
font-family: verdana;
font-size: 50px;
color:#04EFEB;
margin: 10px;
text-align: center;
display: table-cell;
vertical-align: middle;
}
</style>
</head>
<body>
<div class="box1">
<h1>FOOD</h1>
</div>
<div class="box2">
<h1>IS</h1>
</div>
<div class="box3">
<h1>AWESOME</h1>
</div>
</body>
</html>