34 lines
648 B
HTML
34 lines
648 B
HTML
<!DOCTYPE html>
|
|
<html lang="en" >
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>CodePen - Potion container</title>
|
|
<style>
|
|
body{
|
|
display: flex;
|
|
height: 100vh;
|
|
margin: 0;
|
|
padding: 0;
|
|
background-color: black;
|
|
}
|
|
</style><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css">
|
|
<link rel="stylesheet" href="./style.css">
|
|
|
|
</head>
|
|
<body>
|
|
<!-- partial:index.partial.html -->
|
|
<div class="wall">
|
|
<div class="c">
|
|
<span class="l"></span>
|
|
<span class="b">
|
|
<i></i>
|
|
<i></i>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
<!-- partial -->
|
|
<script src="./script.js"></script>
|
|
|
|
</body>
|
|
</html>
|