create link_reducer project

This commit is contained in:
Tutur33
2023-12-01 20:42:23 +01:00
parent 86af53f206
commit 2240bf4454
4 changed files with 104 additions and 0 deletions
+38
View File
@@ -0,0 +1,38 @@
body {
font-family: Arial, sans-serif;
margin: 20px;
}
h2 {
text-align: center;
}
form {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
margin-bottom: 20px;
}
form input[type="url"],
form button {
margin: 5px;
padding: 8px;
border-radius: 5px;
border: 1px solid #ccc;
}
p {
text-align: center;
margin-bottom: 20px;
}
a {
color: blue;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}