-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (31 loc) · 1.66 KB
/
index.html
File metadata and controls
32 lines (31 loc) · 1.66 KB
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 rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta2/css/all.min.css" integrity="sha512-YWzhKL2whUzgiheMoBFwW8CKV4qpHQAEuvilg9FAn5VJUDwKZZxkJNuGM4XkWuk94WCrrwslk8yWNGmY1EduTA==" crossorigin="anonymous" referrerpolicy="no-referrer" /> -->
<link rel="stylesheet" href="style.css">
<title>Expanding Cards</title>
</head>
<body>
<div class="container">
<div class="panel active" style="background-image: url('https://assets.dicebreaker.com/inferno-dantes-guide-to-hell-artwork.jpg/BROK/resize/1200x1200%3E/format/jpg/quality/70/inferno-dantes-guide-to-hell-artwork.jpg');">
<h3>Nine Hells</h3>
</div>
<div class="panel" style="background-image: url('https://64.media.tumblr.com/9156735ca3773d2eb52b48e25ec3dcfa/tumblr_inline_pm7ocjCz7H1r17oyd_1280.jpg');">
<h3>Feywild</h3>
</div>
<div class="panel" style="background-image: url('https://dnd.dragonmag.com/wp-content/uploads/sites/587/2021/05/qewewretrytuyuy.jpg');">
<h3>Underdark</h3>
</div>
<div class="panel" style="background-image: url('https://www.dndspeak.com/wp-content/uploads/2021/04/Shadowfell.jpg');">
<h3>Shadowfell</h3>
</div>
<div class="panel" style="background-image: url('https://i.pinimg.com/736x/2f/cd/75/2fcd75798cc9c199eeaa57ece4ac7ef5.jpg');">
<h3>Sigil</h3>
</div>
</div>
<script src="script.js"></script>
</body>
</html>