Files
CSS_Demos/50Days/day1/index.html

62 lines
1.7 KiB
HTML

<!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="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w=="
crossorigin="anonymous" /> -->
<link rel="stylesheet" href="style.css" />
<title>Day 1 - Expanding Cards</title>
</head>
<body>
<div class="container">
<div
class="panel active"
style="
background-image: url(https://images.unsplash.com/photo-1508672019048-805c876b67e2?w=1350);
"
>
<h3>Explore The World</h3>
</div>
<div
class="panel"
style="
background-image: url(https://images.unsplash.com/photo-1485123263479-f5ea30a2f92d?w=1350);
"
>
<h3>Winter in Sweden</h3>
</div>
<div
class="panel"
style="
background-image: url(https://images.unsplash.com/photo-1585392569893-c33ab1e3f3f5?w=1350);
"
>
<h3>Summer in Australia</h3>
</div>
<div
class="panel"
style="
background-image: url(https://images.unsplash.com/photo-1534430480872-3498386e7856?w=1350);
"
>
<h3>New York</h3>
</div>
<div
class="panel"
style="
background-image: url(https://images.unsplash.com/photo-1552465011-b4e21bf6e79a?w=1350);
"
>
<h3>South East Asia</h3>
</div>
</div>
<script src="script.js"></script>
</body>
</html>