html
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
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<div class="image-container">
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTb8vw_1HKX4pA0kUADUKRxugk0ElctGQOPxA&usqp=CAU" />
<div>Digital Voting</div>
</div>
<div class="image-container">
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQklsNv6wWGMXddd-K7ujJr4amZt2UGIB6acA&usqp=CAU" />
<div>Digital Voting</div>
</div>
<div class="image-container">
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQCs2GVYSa-0kj3AeLy2xnsuKXnG3w5NYsHFg&usqp=CAU" />
<div>Digital Voting</div>
</div>
<div class="image-container">
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTjUGghzQ_grzbbsUKusThpJQt-LaOfmN__zQ&usqp=CAU" />
<div>Digital Voting</div>
</div>
<div class="image-container">
Enter to Rename, Shift+Enter to Preview
css
css
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
body {
}
.image-container{
margin: 2px;
display: flex;
align-items: flex-end;
justify-content: center;
}
.image-container img{
width: 100%;
height: auto;
filter: drop-shadow(0 0 5px grey);
border: 1px solid;
}
.image-container div{
width: 90%;
position: absolute;
text-align: center;
font-weight: bold;
color: white;
padding: 7px;
margin: 10px 0;
background-color: #0007;
}
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run