-
-
Notifications
You must be signed in to change notification settings - Fork 120
/
index.html
32 lines (31 loc) · 988 Bytes
/
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
<!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 href="style.css" type="text/css" rel="stylesheet">
<title>Expanding Cards Project</title>
</head>
<body>
<!-- <h1>EXPANDING CARDS</h1> -->
<div class="container">
<div class="panel active" style="background-image: url('card1.jfif');">
<h3>Beech</h3>
</div>
<div class="panel" style="background-image: url('card2.jfif');">
<h3>Beech</h3>
</div>
<div class="panel" style="background-image: url('card3.jfif');">
<h3>Beech</h3>
</div>
<div class="panel" style="background-image: url('card4.jfif');">
<h3>Beech</h3>
</div>
<div class="panel" style="background-image: url('card5.jfif');">
<h3>Beech</h3>
</div>
</div>
<script src="script.js"></script>
</body>
</html>