How to Create Triangle Box for Website ?

SEO Help and Tips

How to Create Triangle Box for Website ?

Here is the example code of triangle box:

<head>
<style>
  .triangle-box {
    width: 0;
    height: 0;
    border-left: 150px solid transparent;
    border-right: 150px solid transparent;
    border-bottom: 150px solid blue; /* Change color as needed */
    position: relative;
  }
 
  .triangle-box-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }
 
  .triangle-box-content a {
    color: white;
    text-decoration: none;
  }
</style>
</head>
<body>

<div class="triangle-box">
  <div class="triangle-box-content">
    <h2>Your Triangle Box</h2>
    <p>content</p>
    <a href="#">Click me!</a>
  </div>
</div>

</body>

Comments

Popular posts from this blog

Office Tool_SPSS v23 + Serial key

How to Fix FATAL error Failed to parse input Document ?

How to Reduce Lazy Load Resources

Popular posts from this blog

Office Tool_SPSS v23 + Serial key

How to Fix FATAL error Failed to parse input Document ?

How to Reduce Lazy Load Resources