-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
92 lines (79 loc) · 2.26 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
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
83
84
85
86
87
88
89
90
91
92
<!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">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Sansita+Swashed:wght@700&display=swap" rel="stylesheet">
<title>K11 Movers & Packers</title>
<style>
* {
margin: 0%;
padding: 0%;
box-sizing: border-box;
overflow: hidden;
font-family: 'Sansita Swashed', cursive;
}
.main-container {
width: 100%;
height: 100vh;
}
.sub-container {
backdrop-filter: blur(20px);
}
.sub-container img {
min-width: 100%;
height: 100vh;
backdrop-filter: grayscale(0.4);
}
.hero-txt {
display: flex;
align-items: center;
justify-content: center;
flex-wrap: nowrap;
}
.hero-txt h1 {
font-weight: bold;
font-size: 5rem;
position: absolute;
z-index: 3;
top: 10%;
left: 40%;
transform: translateX(-50%);
color: #ff3300;
text-shadow: 2px 2px #2b2929;
/* -2px 2px #2b2929,
-3px 3px #2b2929,
-4px 4px #2b2929,
-5px 5px #2b2929,
-6px 6px #2b2929,
-7px 7px #2b2929,
-8px 8px #2b2929,
-9px 9px #2b2929,
-10px 10px #2b2929,
-11px 11px #2b2929,
-12px 12px 25px rgba(0, 0 , 0, 0.5);*/
}
@media only screen and (max-width: 426px) {
.hero-txt h1 {
font-size: 2.7rem;
color: #b32c0b;
}
}
</style>
</head>
<body>
<div class="main-container">
<div class="sub-container">
<div class="hero-txt">
<div id="hero-inner">
<h1>Arriving soon on the web ...!</h1>
</div>
</div>
<img src="truck.jpg" alt="">
</div>
</div>
</body>
</html>