In this video, I'm going to show you how to style an awesome button using HTML and CSS
In this video, I'm going to show you how to style an awesome button using HTML and CSS This is the code ************************************************************************** <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <style> body{ margin: 0; padding: 0; box-sizing: border-box; display: flex; justify-content: center; align-items: center; height: 100vh; background: linear-gradient(pink,blue); } .btn{ border: 1ps dashed #000; background: rebeccapurple; color: #fff; padding: 10px 20px; border-radius: 50px; transition: .3s ease-in-out; } .btn:hover{ border-radius: 0px; color: rebeccapurple; background: #fff; } </style> </head> <body> <di...