How To Create A Triangle Using HTML and CSS?


STEP 1: Add <div class="triangle"></div> in the HTML document.

STEP 2: Add this CSS code.

.triangle{ 
 position: absolute;
 border-width: 50px;
 border-style: solid;
 border-color: transparent transparent black transparent;
 }

 

OUTPUT

 







Trending Posts

What Are The Use of Function Keys F1 to F12 on The Keyboard?

Is iPhone More Secure Than Android Phone?

Build a Modern Gradient Calculator Using HTML, CSS, and JavaScript

🚀 Build a QR Code Generator Using HTML, CSS & JavaScript

Can I Code If I'm Bad at Math? (Spoiler: Yes, You Can!)

12MP vs 48MP vs 64MP vs 108MP | Does More Megapixel Equal Better Image Quality?

Can a Computer Run Without RAM?

Bridging the Language Divide: How Modern IT Professionals Can Make Their Work Make Sense

The Secret to Flawless Web Design: Mastering Responsive Layouts

How To Create a Fake Facebook Login Clone Using Only HTML and CSS?