-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
81 lines (71 loc) · 3.21 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>28 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="./Add Testimonials/index.html">Add Testimonials</a>
<a href="./Animated Product Card Template/index.html"
>Animated Product Card Template</a
>
<a href="./Blog Website Layout/index.html">Blog Website Layout</a>
<a href="./Chatbox UI Template/index.html">Chatbox UI Template</a>
<a href="./Contact us Page/index.html">Contact us Page</a>
<a href="./Create Image Overlay Hover/index.html">Create Image Overlay Hover</a>
<a href="./Create Text Color Animation/index.html">Create Text Color Animation</a>
<a href="./Design a Responsive Services Section Template/index.html">Design a Responsive Services Section Template</a>
<a href="./Email Template/index.html">Email Template</a>
<a href="./Expanding Image Gallery Template/index.html">Expanding Image Gallery Template</a>
<a href="./FAQ section to any website/index.html">FAQ section to any website</a>
<a href="./Fixed Sidebar/index.html">Fixed Sidebar</a>
<a href="./Google Chrome Page Template/index.html">Google Chrome Page Template</a>
<a href="./Indian Flag/index.html">Indian Flag</a>
<a href="./Landing page/index.html">Landing page</a>
<a href="./Multiple Columns/index.html">Multiple Columns</a>
<a href="./Parallax scrolling effect/index.html">Parallax scrolling effect</a>
<a href="./Portfolio Website/index.html">Portfolio Website</a>
<a href="./Pricing Table/index.html">Pricing Table</a>
<a href="./Progress Bar/index.html">Progress Bar</a>
<a href="./Registration Form/index.html">Registration Form</a>
<a href="./Responsive CSS Grid Layout/index.html">Responsive CSS Grid Layout</a>
<a href="./Responsive Navigation Bar with Dropdown/index.html">Responsive Navigation Bar with Dropdown</a>
<a href="./Responsive Product Card/index.html">Responsive Product Card</a>
<a href="./Responsive Profile Card/index.html">Responsive Profile Card</a>
<a href="./Sidebar Menu/index.html">Sidebar Menu</a>
<a href="./Subscription Page/index.html">Subscription Page</a>
<a href="./Web page/index.html">Web page</a>
</div>
</body>
</html>