Simple login page with a loading animation on submit
A Pen by Emily Goldfein on CodePen.
Simple login page with a loading animation on submit
A Pen by Emily Goldfein on CodePen.
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Login/Logout animation concept</title> | |
| <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=yes"> | |
| <link rel='stylesheet prefetch' href='https://fonts.googleapis.com/css?family=Open+Sans'> |
Trying to do a absolute center responsive login screen
A Pen by yogesh T S on CodePen.
| <h1><span class="blue"><</span>Table<span class="blue">></span> <span class="yellow">Responsive</pan></h1> | |
| <h2>Created with love by <a href="http://pablogarciafernandez.com" target="_blank">Pablo García Fernández</a></h2> | |
| <table class="container"> | |
| <thead> | |
| <tr> | |
| <th><h1>Sites</h1></th> | |
| <th><h1>Views</h1></th> | |
| <th><h1>Clicks</h1></th> | |
| <th><h1>Average</h1></th> |
A Pen by Gary Carino on CodePen.
Note: I'm currently taking a break from this course to focus on my studies so I can finally graduate
Mercurial Commands
| Commands | Description |
|---|---|
| hg pull | get latest changes like git pull use flags like -u IDK why yet |
| hg add | only for new files |
| hg commit | add changes to commit with -m for message just like git |
| hg addremove | adds new files and removes file not in your file system |
| hg incoming | see changes commited by others |
| hg outgoing | see local commits |