E
E
EnZo_Smile2021-04-17 13:16:47
css
EnZo_Smile, 2021-04-17 13:16:47

Are there sites-catalogues of web interface elements with css hosting on their side?

I don’t know if I formulated the question correctly, because I don’t understand anything in web development.

Here, let's say, I need to fasten an animated css button, but not on my site, but on a service that allows you to insert html codes. As I understand it from sites found by queries "css-button", these elements can only be used if there is access to the backend of the site in order to place css code there.

Or maybe there are services that provide all sorts of cool interface elements, including buttons, and at the same time host them so that it is enough to use only the html code?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
M
maksam07, 2021-04-17
@maksam07

If you can insert html, what prevents you from inserting code like this:

<style> 
div {
  width: 100px;
  height: 100px;
  background-color: red;
  animation-name: example;
  animation-duration: 4s;
}

@keyframes example {
  from {background-color: red;}
  to {background-color: yellow;}
}
</style>

<div></div>

https://www.w3schools.com/css/tryit.asp?filename=t...

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question