Interesting 404 error page.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <h2>Weekly Coding Challenge #1: Sign in/up Form</h2> | |
| <div class="container" id="container"> | |
| <div class="form-container sign-up-container"> | |
| <form action="#"> | |
| <h1>Create Account</h1> | |
| <div class="social-container"> | |
| <a href="#" class="social"><i class="fab fa-facebook-f"></i></a> | |
| <a href="#" class="social"><i class="fab fa-google-plus-g"></i></a> | |
| <a href="#" class="social"><i class="fab fa-linkedin-in"></i></a> | |
| </div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .night | |
| - for (i = 0; i < 20; i++) | |
| .shooting_star |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="form__group field"> | |
| <input type="input" class="form__field" placeholder="Name" name="name" id='name' required /> | |
| <label for="name" class="form__label">Name</label> | |
| </div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "use strict"; // Paul Slaymaker, paul25882@gmail.com | |
| const body=document.getElementsByTagName("body").item(0); | |
| body.style.background="#000"; | |
| const TP=2*Math.PI; | |
| const CSIZE=400; | |
| const ctx=(()=>{ | |
| let d=document.createElement("div"); | |
| d.style.textAlign="center"; | |
| body.append(d); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="loader"> | |
| <svg viewBox="0 0 80 80"> | |
| <circle id="test" cx="40" cy="40" r="32"></circle> | |
| </svg> | |
| </div> | |
| <div class="loader triangle"> | |
| <svg viewBox="0 0 86 80"> | |
| <polygon points="43 8 79 72 7 72"></polygon> | |
| </svg> |
This is a collection of different types of loaders, spinners. There are no image dependencies in this. It's is done using CSS. Hence it is easily customization too.
A Pen by Vineeth.TR on CodePen.
A Pen by Asfo Zavala on CodePen.
NewerOlder