sirstanislav / how-to-learn

The landing page "How to learn"

Home Page:https://sirstanislav.github.io/HowToLearn/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How to learn

This landing page has been written by HTML5 and CSS3. The project was created on the basis of BEM methodology.


Of the features it is the application of animations

@keyframes rotation {
  from {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
}
  to {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
}
}

.rotation {
  animation: rotation 20s linear infinite;
  -webkit-animation: rotation 20s linear infinite;
}

About

The landing page "How to learn"

https://sirstanislav.github.io/HowToLearn/


Languages

Language:CSS 52.2%Language:HTML 47.8%