Social Media Posts
Linting & Fixing In Javascript
Jun 24, 2019
As javascript matures there have been a proliferation of linting tools that can help improve the state of your codebase.
HTML Meta Tags
Jun 23, 2019
The HTML meta tag goes in the <head> of your webpage and allows you to provide name value pairs that isn’t viewable by your webpage viewers, but rather machine parseable information about your webpage.
Keyframes Animation Sequence Rule
Jun 20, 2019
Using the @keyframes CSS rule you can specify the steps in a CSS animation sequence by defining styles and how the element should render at a given time during the sequence.
Local Web Server With Python
Jun 19, 2019
Need a quick and easy server on your local computer? Look no further than Python’s SimpleHTTPServer.
Back To The Basics: Anchor Links For Page Linking
Jun 18, 2019
One usage of anchor links in HTML can allow a user to jump to a specific part of the page. This could be used for a table of contents, or an arrow that a user can click on to scroll them to a certain section of your webpage.