-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.html
More file actions
82 lines (71 loc) · 1.35 KB
/
project.html
File metadata and controls
82 lines (71 loc) · 1.35 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html>
<title>food + travel</title>
<head>
<style>
.begin {
text-align: center;
background: url('http://www.yoganonymous.com/system/image_assets/images/000/031/727/original/beach_yoga_sequence.jpg?1470674576') no-repeat center center fixed;
background-size: cover;
position: relative;
top: -10%;
left: -10%;
right: -10%;
min-width: 100%;
min-height: -10%;
padding: 100px;
font-family: 'Montserrat';
font-size: 50px;
color: black;
}
.food{
text-align: center;
background: url('food.jpg') no-repeat center center fixed;
background-size: cover;
position: relative;
top: -10%;
left: -10%;
right: -10%;
min-width: 100%;
min-height: -10%;
padding: 100px;
font-family: 'Montserrat';
font-size: 50px;
color: white;
}
.travel{
text-align: center;
background: url('travel.jpeg') no-repeat center center fixed;
background-size: cover;
position: relative;
top: -10%;
left: -10%;
right: -10%;
min-width: 100%;
min-height: -10%;
padding: 100px;
font-family: 'Montserrat';
font-size: 50px;
color: black;
}
div {
text-align: center;
font-family: 'Montserrat'
}
</style>
<header>
<div class="begin">
<h1> KEEP CALM</h1>
</div>
<div class="food">
<h1> HAVE FOOD </h1>
</div>
<div class="travel">
<h1> AND TRAVEL </h1>
</div>
</header>
<body>
<h1>WELCOME</h1>
</div>
</body>
</html>