-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (35 loc) · 1.9 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
<!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="stylesheet" href="style.css">
<title>Expanding Christmas Cards</title>
</head>
<body>
<div class="container">
<!-- First Card-->
<div class="panel active" style="background-image: url('https://images.unsplash.com/photo-1545602334-0bf5a623bd94?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=735&q=80')">
<h3>Wishing A Merry Christmas</h3>
</div>
<!-- Second Card-->
<div class="panel" style="background-image: url('https://images.unsplash.com/photo-1632924192284-9163f3d88a16?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=687&q=80')">
<h3>Giving gifts to the love ones</h3>
</div>
<!-- Third Card-->
<div class="panel" style="background-image: url('https://images.unsplash.com/photo-1607092683711-8e229ad16d48?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=687&q=80')">
<h3>Donating to the poor</h3>
</div>
<!-- Fourth Card-->
<div class="panel" style="background-image: url('https://images.unsplash.com/flagged/photo-1545622783-901effb998a8?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=687&q=80')">
<h3>Spreading kindness</h3>
</div>
<!-- Fifth Card-->
<div class="panel" style="background-image: url('https://images.unsplash.com/photo-1639016618275-aad23ac5e4c7?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=687&q=80')">
<h3>Cheering someone up</h3>
</div>
</div>
<script src="script.js"></script>
</body>
</html>