Tips & Tutorials

3 Ways To Create Responsive Triangles In HTML CSS

Welcome to a tutorial on how to create responsive triangles in HTML and CSS. The common ways to create triangles in HTML and CSS are: Using CSS borders. width: 0; height: 0; border-left: 10px solid transparent; border-right: 10px solid transparent; border-bottom: 20px solid red; Using CSS clip-path. width: 100px; height: 100px; clip-path: polygon(50% 0%, 0%

3 Ways To Create Responsive Triangles In HTML CSS Read More »

Disable Pinch Zoom With HTML Viewport (A Quick Guide)

Welcome to a tutorial on how to disable pinch zoom with the HTML viewport meta tag. Having some trouble with your website design on mobile devices? Is it zooming in too much, or zooming out too far? Well, here’s a quick fix. To disable pinch-zoom in HTML, simply add <meta name=”viewport” content=”width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no”>

Disable Pinch Zoom With HTML Viewport (A Quick Guide) Read More »