-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (35 loc) · 962 Bytes
/
index.html
File metadata and controls
38 lines (35 loc) · 962 Bytes
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
<!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">
<style>
.example{
height: 500px;;
}
.example img {
width: 100%;
/* height: 500px; */
position: relative;
}
.example .overlay {
position: absolute;
top: 80px;
right: 15px;
font-weight: bold;
text-align: right;
font-size: 30px;
width: 20%;
}</style>
<title>Document</title>
</head>
<body>
<div class="example">
<img class="background-image" src="https://ik.imagekit.io/ikmedia/accessories_banner.jpg?tr=w-1200,h-400">
<div class="overlay">
<img src="https://th.bing.com/th/id/OIP.O5l0ZGIhrZsoTQzGj5SZ5AHaE7?pid=ImgDet&rs=1" alt="">
</div>
</div>
</body>
</html>