#html

Level up your HTML knowledge with our posts about HTML aka Hypertext Markup Language

Check out our pinterest page dedicated to html as well!

Introduction To CORS (Cross-Origin Resource Sharing)

Oct 12, 2019

CORS or Cross-Origin Resource Sharing is a mechanism to make it possible to make requests from one website to another in the browser. The security policy, Same-Origin Policy (SOP) normally restricts this kind of behavior. If you’re writing an API for example, and want other websites to be able to access your API via browser side requests, you might want to define trusted origins that requests are allowed from or simply trust all origins. Check the link in the bio for more info!

Behind The Scenes: Edition 3 - Instagram Social Feed

Sep 15, 2019

On our site, near the bottom we have a handy social feed that showcases our Instagram feed and also links to the post on our website that relates to the Instagram post. Wonder how that works? Let's go take a #bts (behind the scenes) look.

Edit The Entire Webpage With Design Mode

Sep 09, 2019

Sometimes as a designer it is useful to just put your hands all over a website to tinker with it as you wish. With the HTML spec there is a property called designMode that when active, allows you to make the entire webpage editable.

Picture Element In HTML

Aug 01, 2019

The HTML picture element can come in handy if you want fine grained control over the art direction or to offer different image formats when maybe certain formats are not supported by all browsers.

Back To The Basics: CSS Specificity

Jul 27, 2019

CSS specificity is a big top in web development but having a good foundational understanding is essential to writing clean and well organized CSS.