tarotcard.css/test/index.html

40 lines
772 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>tarotcard.css Test Page</title>
<style>
body {
height: 100vh;
background: #000056;
}
.center-grid {
height: 100vh;
display: grid;
place-items: center;
}
#simple-card {
height: 88vh;
}
</style>
<link rel="stylesheet" href="styles/tarotcard.css"/>
</head>
<body>
<div class="center-grid">
<div id="simple-card" class="tarot-card">
<div class="tarot-card__section tarot-card__section--art">
<img class="tarot-card__art" src="images/card_art_std.jpg" alt="The Simple Card artwork image.">
</div>
<div class="tarot-card__section tarot-card__section--title">
<p class="tarot-card__title">The Simple Card</p>
</div>
</div>
</div>
</body>
</html>