-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
102 lines (102 loc) · 2.57 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>All Projects</title>
<style>
*
{
margin: 0;
padding: 0;
box-sizing: border-box;
}
ul
{
list-style: none;
}
.row
{
text-align: center;
width: 280px;
background-color: #0075FF;
cursor: pointer;
height: 200px;
line-height: 170px;
border-radius: 8px;
}
a
{
text-decoration: none;
font-size: 25px;
color: #FFF;
padding: 10px;
width: 100%;
display: block;
}
</style>
</head>
<body>
<div class="cotnainer" style="width: 100%; display: flex; justify-content: space-evenly; align-items: flex-start; gap: 10px; flex-wrap: wrap; padding: 15px;">
<div class="row">
<a href="01%20Accordion/">Accordion</a>
</div>
<div class="row">
<a href="02%20Box%20Of%20Boxes/">Box Of Boxes</a>
</div>
<div class="row">
<a href="03%20Color%20Flipper/">Color Flipper</a>
</div>
<div class="row">
<a href="04%20Counter%20Button/">Counter Button</a>
</div>
<div class="row">
<a href="05%20Date%20Now/">Date Now</a>
</div>
<div class="row">
<a href="06%20Expanding%20Cards/">Expanding Cards</a>
</div>
<div class="row">
<a href="07%20Loader/">Loader</a>
</div>
<div class="row">
<a href="08%20Sidebar%20Effect/">Sidebar Effect</a>
</div>
<div class="row">
<a href="09%20ToDo%20List/">ToDo List</a>
</div>
<div class="row">
<a href="10%20typing/">Typing</a>
</div>
<div class="row">
<a href="11%20Small%20Word/">Expanding Cards</a>
</div>
<div class="row">
<a href="12%20Kinetic%20Loader/">Kinetic Loader</a>
</div>
<div class="row">
<a href="13%20Calculator/">Calculator</a>
</div>
<div class="row">
<a href="14%20slideshow/">Slideshow</a>
</div>
<div class="row">
<a href="15%20testimonial%20slider/">Testimonial Slider</a>
</div>
<div class="row">
<a href="16%20progress%20steps/">Progress Steps</a>
</div>
<div class="row"></div>
<a href="17%20notion/">Notion</a>
</div>
</div>
<script>
let rows = document.querySelectorAll(".row");
for (let i = 0; i < rows.length; i++)
{
let randomBackground = `rgb(${Math.floor(Math.random() * 256)}, ${Math.floor(Math.random() * 256)}, ${Math.floor(Math.random() * 256)})`;
rows[i].style.backgroundColor = randomBackground;
}
</script>
</body>
</html>