-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (49 loc) · 1.53 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
<!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>