Search
 
SCRIPT & CODE EXAMPLE
 

HTML

on page load animation

<!-- Example: -->
<style>
  @keyframes slideInFromLeft {
    0% {
      transform: translateX(-100%);
    }
    100% {
      transform: translateX(0);
    }
  }

  header {  
    /* This section calls the slideInFromLeft animation we defined above */
    animation: 1s ease-out 0s 1 slideInFromLeft;

    background: #333;
    padding: 30px;
  }
</style>

/* Added for aesthetics */ body {margin: 0;font-family: "Segoe UI", Arial, Helvetica, Sans Serif;} a {text-decoration: none; display: inline-block; margin-right: 10px; color:#fff;}
<header>
  <a href="#">Home</a>
  <a href="#">About</a>
  <a href="#">Products</a>
  <a href="#">Contact</a>
</header>
Comment

PREVIOUS NEXT
Code Example
Html :: bootstrap 4 multiple file upload 
Html :: how to increase width of td in html 
Html :: tailwind negative margin 
Html :: html href new tab 
Html :: strikethrough code 
Html :: using svg in html 
Html :: The size of BLOB/TEXT data inserted in one transaction is greater than 10% of redo log size. Increase the redo log size using innodb_log_file_size. 
Html :: &nbsp html 
Html :: form controller in bootstrap 
Html :: ionic format date 
Html :: vue button prevent double click 
Html :: bootrsrap 
Html :: html5 input pattern name 
Html :: ngbdatepicker disable input 
Html :: bootstrap input field validation 
Html :: boilerplate code in html 
Html :: swagger decimal number format 
Html :: connect html to mysql database 
Html :: how to detect play button on html video player 
Html :: django template list item by index 
Html :: free landing page template html5 
Html :: basic html boilerplate 
Html :: resize element with content html 
Html :: same form two submits 
Html :: Font Awesome icons html code 
Html :: typo3 fluid format html 
Html :: stimulus data action 
Html :: how to run html file in xampp server 
Html :: check html 
Html :: html online editor 
ADD CONTENT
Topic
Content
Source link
Name
6+9 =