-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (57 loc) · 2.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!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 Cards</title>
<!-- This project is part of the 50 Projects in 50 Days - HTML, CSS, and JavaScript video series. Packt August 2021 By Brad Traversy and Florin Pop -->
</head>
<body>
<!-- Container to hold all panels -->
<div class="container">
<div
class="panel active"
style="
background-image: url('https://images.unsplash.com/photo-1501555088652-021faa106b9b?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=2073&q=80');
"
>
<h3>Explore The World</h3>
</div>
<div
class="panel"
style="
background-image: url(https://images.unsplash.com/photo-1542202229-7d93c33f5d07?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1170&q=80;);
"
>
<h3>Wild Forest</h3>
</div>
<div
class="panel"
style="
background-image: url('https://images.unsplash.com/photo-1618741612051-26ffe925da83?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1174&q=80');
"
>
<h3>Sunny Beach</h3>
</div>
<div
class="panel"
style="
background-image: url('https://images.unsplash.com/photo-1517988195759-0e89bd1de216?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1074&q=80');
"
>
<h3>City Winter</h3>
</div>
<div
class="panel"
style="
background-image: url('https://images.unsplash.com/photo-1444090542259-0af8fa96557e?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1170&q=80');
"
>
<h3>Mountains - Clouds</h3>
</div>
</div>
<script src="./script.js"></script>
</body>
</html>