-
Notifications
You must be signed in to change notification settings - Fork 0
/
image.html
54 lines (53 loc) · 1.78 KB
/
image.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.10.0/css/tachyons.min.css"/>
<title>Document</title>
<style>
.image-with-text {
position: relative;
text-align: center;
color: white;
}
.bottom-left {
position: absolute;
text-align: left;
bottom: 2%;
left: 3%;
}
.bottom-right {
position: absolute;
bottom: 8px;
right: 16px;
}
</style>
</head>
<body>
<div class="section-2 cf">
<div class="image-with-text fl w-100 w-50-ns">
<img src="assets/home/baby.jpg" class="" alt="Baby wearing Duck Duck Goose pajamas" style="width:100%; filter: brightness(40%);">
<div class="image-text bottom-left">
<h1>About Us</h1>
<p>
Since 1957, Allura Imports Inc. has been dedicated
to creating quality fashion for children at the best
possible value.
</p>
</div>
</div>
<div class="image-with-text fl w-100 w-50-ns">
<img src="assets/home/enyce.jpg" class="" alt="Baby wearing Duck Duck Goose pajamas" style="width:100%; filter: brightness(40%);">
<div class="image-text bottom-right tr pa2">
<h1>About Us</h1>
<p>
Since 1957, Allura Imports Inc. has been dedicated
to creating quality fashion for children at the best
possible value.
</p>
</div>
</div>
</div>
</body>
</html>