-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bfa9963
commit 8084360
Showing
2 changed files
with
62 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"liveServer.settings.port": 5501 | ||
"liveServer.settings.port": 5502 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |