-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (30 loc) · 1.16 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
<!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">
<title>Expanding Cards</title>
<link rel="stylesheet" href="css/style.css">
<script src="script.js" defer></script>
</head>
<body>
<div class="container">
<div class="pannel active" style="background-image: url('https://source.unsplash.com/s9l_K_CQ6C0')">
<h3>oceans</h3>
</div>
<div class="pannel " style="background-image: url('https://source.unsplash.com/9YUA6137D44')">
<h3>North Mountains</h3>
</div>
<div class="pannel " style="background-image: url('https://source.unsplash.com/78A265wPiO4')">
<h3>Dense mountain</h3>
</div>
<div class="pannel " style="background-image: url('https://source.unsplash.com/1Z2niiBPg5A')">
<h3>hill Station</h3>
</div>
<div class="pannel " style="background-image: url('https://source.unsplash.com/pHANr-CpbYM')">
<h3>WaterFall</h3>
</div>
</div>
</body>
</html>