-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (29 loc) · 1.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Accordion Cards</title>
<link rel="stylesheet" href="./index.css">
</head>
<body>
<div class="flex-container">
<div style="background-image: url('./images/image-1.jpg');">
<img src="./images/cancel.svg" alt="" class="close">
</div>
<div style="background-image: url('./images/image-2.jpg');">
<img src="./images/cancel.svg" alt="" class="close">
</div>
<div style="background-image: url('./images/image-3.jpg');">
<img src="./images/cancel.svg" alt="" class="close">
</div>
<div style="background-image: url('./images/image-4.jpg');">
<img src="./images/cancel.svg" alt="" class="close">
</div>
</div>
<!-- jquery -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
<script src="./index.js"></script>
</body>
</html>