-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (44 loc) · 1.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Machine Coding</title>
<style>
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
padding: 1rem;
display: flex;
flex-wrap: wrap;
gap: 1.2rem;
background-color: black;
}
a {
color: white;
padding: 1.2rem;
font-size: 1.2rem;
border-radius: 10px;
text-decoration: none;
border: 2px solid gray;
background-color: rgba(123, 255, 0, 0.3);
}
a:hover {
border-color: white;
background-color: rgba(123, 255, 0, 0.6);
}
</style>
</head>
<body>
<a href="./Autocomplete Search Bar using React/build/index.html">Autocomplete Search Bar using React</a>
<a href="./Pagination using React/build/index.html">Pagination using React</a>
<a href="./Tab Form Component using React/build/index.html">Tab Form Component using React</a>
<a href="./Progress Bar using React/build/index.html">Progress Bar using React</a>
<a href="./File Explorer using React/build/index.html">File Explorer using React</a>
<a href="./OTP Input using React/build/index.html">OTP Input using React</a>
</body>
</html>