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
Post a Comment
Thanks for your Comments.