Today's day 9 Goal is to Put author name with styling in css file, improvements to code in my project backupcal.
HTML
-
CSS
How to add Author name to bottom of the page?
- Write the following code.
.footer {
position: absolute;
top: 40em;
left: 50em;
height: 40px;
width: 150px;
}
How to get transparent background?
- Write the following code.
.footer {
padding-top: 15px;
padding-left: 30px;
backdrop-filter: blur(15px) saturate(180%);
-webkit-backdrop-filter: blur(15px) saturate(180%);
background-color: rgba(255, 255, 255, 0.75);
border-radius: 9px;
border: 1px solid rgba(209, 213, 219, 0.3);
}
JavaScript
-
Conclusion
Adding Name to bottom of page.
Get transparent background.
My Code:
Author: Dheeraj.y