Skip to content

Commit

Permalink
html
Browse files Browse the repository at this point in the history
  • Loading branch information
nidhiupman568 committed Aug 24, 2024
1 parent bfa9963 commit 8084360
Show file tree
Hide file tree
Showing 2 changed files with 62 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"liveServer.settings.port": 5501
"liveServer.settings.port": 5502
}
61 changes: 61 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>8 SMALL PROJECTS - IN HTML CSS AND JAVASCRIPT - BY NIDHI UPMAN</title>
<style>
body {
font-family: Arial, sans-serif;
padding: 20px;
background-color: #000;
background-image: url("./assets/images/background.jpg");
background-repeat: no-repeat;
background-size: cover;
}

.container {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

a {
flex-basis: calc(25% - 20px);
margin-bottom: 10px;
padding: 10px;
color: #fff;
text-decoration: none;
border-radius: 5px;
transition: transform 0.3s ease;
perspective: 1000px;
}

a:hover {
transform: rotateX(10deg) rotateY(10deg);
box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
</style>
</head>
<body>

<div class="container">





<a href="./github/index.html">github</a>
<a href="./note-app/index.html">note-app</a>
<a href="./quiz app/index.html">quiz app</a>
<a href="./random-color/index.html">random-color</a>
<a href="./random-para/index.html">random-para</a>
<a href="./random-password/index.html">random-password</a>
<a href="./slider/index.html">slider</a>
<a href="./to-do/index.html">to-do</a>



</div>
</body>
</html>

0 comments on commit 8084360

Please sign in to comment.