34 lines
711 B
HTML
34 lines
711 B
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">
|
|
<title>Day1</title>
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<script src="script.js" type="module"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="app"></div>
|
|
</body>
|
|
<style>
|
|
html,
|
|
body {
|
|
background-color: #101010;
|
|
color: #FEFEFE;
|
|
font-family: Helvetica, Arial, Sans-Serif;
|
|
padding: 0;
|
|
margin: 0;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
.container__count {
|
|
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
|
|
}
|
|
</style>
|
|
|
|
</html> |