How to Create Colorful Box for Website ?
How to Create Colorful Box for Website ?
<head>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<style>
.colorful-box {
background-color: #F2C14E; /* Change this to your desired background color */
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
color: #FFFFFF; /* Change this to your desired text color */
}
.colorful-box h2 {
margin-top: 0;
}
.colorful-box ul {
list-style-type: none;
padding: 0;
}
.colorful-box li {
margin-bottom: 5px;
}
</style>
<div class="colorful-box">
<h2>Headlines of Top News</h2>
<p>Here is the details of top news into box</p>
<ul>
<li><a href="https://www.example.com/news-update">News Update</a></li>
<li><a href="https://www.example.com/next-news">Next News</a></li>
<li><a href="https://www.example.com/next-page">Next Page</a></li> </ul>
<a href="https://www.example.com">Visit Website</a>
</div>
</body>
Comments
Post a Comment
Thanks for your Comments.