add day 2

This commit is contained in:
Zoe
2022-09-24 22:59:42 -05:00
parent 17197c8e6b
commit a09bc1d1b4
6 changed files with 1045 additions and 1 deletions

34
day2/index.html Normal file
View File

@@ -0,0 +1,34 @@
<!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"></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>