From graphic design to web design. This 404 error example was designed by Yoga Perdana and we have converted into web with pure CSS and minimal HTML using CSS3 gradients and shadows. See more creative examples in the related pens.
Hope you like it :)
Read the full article here
A Pen by Ricardo Prieto on CodePen.
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 id="content"> | |
| <input type="file" id="thefile" accept="audio/*" /> | |
| <canvas id="canvas"></canvas> | |
| <audio id="audio" controls></audio> | |
| </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
| <h3>Dynamic Progress Bar</h3> | |
| <p>Running progress bar from 0% to 100% in 10 seconds</p> | |
| <a href="#"><button id="testButton" class="testButton">Submit</button></a> <!--new--> | |
| <div class="progress"> | |
| <div id="dynamic" class="progress-bar progress-bar-success progress-bar-striped active" role="progressbar" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100" style="width: 0%"> | |
| </div> | |
| </div> |