PCCoE-Hacktoberfest-21 / animated-components

https://pccoe-hacktoberfest-21.github.io/animated-components/
13 stars 27 forks source link
css frontend html javascript ui-components ui-ux-design web-development

Cool Animated Components 😎

Create animated components using HTML, CSS, JS and get them featured here

Latest Announcements πŸ“’

πŸ”΄ The PRs made in this repo will not be considered for the official hacktoberfest (conducted by digitalocean).

πŸ”΄ You can still contribute to this repo to participate in PCCoE Hacktoberfest and win exciting prizes.

Contribution Guidelines

Folder Structure

  1. Create a new folder with the name of your component
  2. Add your files to your newly created folder with the proper naming convention as specified above
  3. In the index.html file add a comment stating your component name
  4. Below the comment create a new card. The code for the card is as below:
<!--     Sample Component (Replace the name with your component name  -->

      <div class="card">
        <div class="box">
          <div class="content">
            <h2>Add your component number (Ex : 13)</h2>
            <h3>Name of your component</h3>
            <p>
              Describe your component in 12-15 words.
            </p>
            <a
              href="https://github.com/PCCoE-Hacktoberfest-21/animated-components/blob/main/animated-components/YOUR-FOLDER-NAME/YOUR-HTML-FILE.html"
              target="_blank"
              >Live Demo</a>
          </div>
        </div>
      </div>
  1. Make sure you add the above code to the main index.html file present in the root and NOT YOUR newly created html file.
  2. Please make sure you add the correct href to the card component. Use the format given below.
 href="https://github.com/PCCoE-Hacktoberfest-21/animated-components/blob/main/animated-components/YOUR-FOLDER-NAME/YOUR-HTML-FILE.html"
  1. Describe your components in not more than 12-15 words.You may look at previous cards descriptions to get an idea on how it is supposed to be written. Place your description in the following

    tag

<p>Describe your component in 12-15 words.</p>

How to Contribute?