Home > Blockchain >  How to create "recommended content" widget in HTML
How to create "recommended content" widget in HTML

Time:05-13

i saw a "recommended content" widget in webs and i want to create one to my website. Example of widget i found online: widget

i want to create a widget in HTML&CSS similar to the photo i added. widget with 3 pictures side by side and below each picture a linked text to another web.

would i like to know what is the best way to approch it ? do it with cols and rows ? maybe cards will be better ? or is it another way ?

CodePudding user response:

is this what you want.

h1{
  text-align:center;
  margin-bottom:50px;
  margin-top:50px;
}
a {
  font-family: Roboto;
 }
.blog-card-blog {
    margin-top: 30px;
}
.blog-card {
    display: inline-block;
    position: relative;
    width: 100%;
    margin-bottom: 30px;
    border-radius: 6px;
    color: rgba(0, 0, 0, 0.87);
    background: #fff;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
.blog-card .blog-card-image {
    height: 60%;
    position: relative;
    overflow: hidden;
    margin-left: 15px;
    margin-right: 15px;
    margin-top: -30px;
    border-radius: 6px;
    box-shadow: 0 16px 38px -12px rgba(0, 0, 0, 0.56), 0 4px 25px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
}
.blog-card .blog-card-image img {
    width: 100%;
    height: 100%;
    border-radius: 6px;
    pointer-events: none;
}
.blog-card .blog-table {
    padding: 15px 30px;
}
.blog-table {
    margin-bottom: 0px;
}
.blog-category {
    position: relative;
    line-height: 0;
    margin: 15px 0;
}
.blog-text-success {
    color: #28a745!important;
}
.blog-card-blog .blog-card-caption {
    margin-top: 5px;
}
.blog-card-caption {
    font-weight: 700;
    font-family: "Roboto Slab", "Times New Roman", serif;
}
.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.blog-card-caption, .blog-card-caption a {
    color: #333;
    text-decoration: none;
}

p {
    color: #3C4857;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}
.blog-card .ftr {
    margin-top: 15px;
}
.blog-card .ftr .author {
    color: #888;
}

.blog-card .ftr div {
    display: inline-block;
}
.blog-card .author .avatar {
    width: 36px;
    height: 36px;
    overflow: hidden;
    border-radius: 50%;
    margin-right: 5px;blog-
}
.blog-card .ftr .stats {
    position: relative;
    top: 1px;
    font-size: 14px;
}
.blog-card .ftr .stats {
    float: right;
    line-height: 30px;
}
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"/>
<h1>Material Design Card</h1>
<div >
  <div >
    <div >
  <div >
    <div >
        <a href="#"> <img  src="https://picsum.photos/id/1084/535/353?grayscale"> </a>
        <div ></div>
    </div>
    <div >
        <h6 ><i ></i> News</h6>
        <h4 >
            <a href="#">Lorem Ipsum is simply dummy text of the printing and</a>
        </h4>
        <p >Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
        <div >
            <div >
                <a href="#"> <img src="https://picsum.photos/id/1005/5760/3840" alt="..." > <span>Lorem</span> </a>
            </div>
            <div > <i ></i> 10 min </div>
        </div>
    </div>
</div>
</div>
    
    
    <div >
  <div >
    <div >
        <a href="#"> <img  src="https://picsum.photos/id/1084/536/354?grayscale"> </a>
        <div ></div>
    </div>
    <div >
        <h6 ><i ></i> News</h6>
        <h4 >
            <a href="#">Lorem Ipsum is simply dummy text of the printing and</a>
        </h4>
        <p >Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
        <div >
            <div >
                <a href="#"> <img src="https://picsum.photos/id/1005/5760/3840" alt="..." > <span>Lorem</span> </a>
            </div>
            <div > <i ></i> 10 min </div>
        </div>
    </div>
</div>
</div>
    
    <div >
  <div >
    <div >
        <a href="#"> <img  src="https://picsum.photos/id/1084/536/354?grayscale"> </a>
        <div ></div>
    </div>
    <div >
        <h6 ><i ></i> News</h6>
        <h4 >
            <a href="#">Lorem Ipsum is simply dummy text of the printing and</a>
        </h4>
        <p >Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
        <div >
            <div >
                <a href="#"> <img src="https://picsum.photos/id/1005/5760/3840" alt="..." > <span>Lorem</span> </a>
            </div>
            <div > <i ></i> 10 min </div>
        </div>
    </div>
</div>
</div>
  </div>
</div>

<!-- Credit: www.bootdey.com/snippets/view/Responsive-UI-Card -->

CodePudding user response:

is this what you want.

h1{
  text-align:center;
  margin-bottom:50px;
  margin-top:50px;
}
a {
  font-family: Roboto;
 }
.blog-card-blog {
    margin-top: 30px;
}
.blog-card {
    display: inline-block;
    position: relative;
    width: 100%;
    margin-bottom: 30px;
    border-radius: 6px;
    color: rgba(0, 0, 0, 0.87);
    background: #fff;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
.blog-card .blog-card-image {
    height: 60%;
    position: relative;
    overflow: hidden;
    margin-left: 15px;
    margin-right: 15px;
    margin-top: -30px;
    border-radius: 6px;
    box-shadow: 0 16px 38px -12px rgba(0, 0, 0, 0.56), 0 4px 25px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
}
.blog-card .blog-card-image img {
    width: 100%;
    height: 100%;
    border-radius: 6px;
    pointer-events: none;
}
.blog-card .blog-table {
    padding: 15px 30px;
}
.blog-table {
    margin-bottom: 0px;
}
.blog-category {
    position: relative;
    line-height: 0;
    margin: 15px 0;
}
.blog-text-success {
    color: #28a745!important;
}
.blog-card-blog .blog-card-caption {
    margin-top: 5px;
}
.blog-card-caption {
    font-weight: 700;
    font-family: "Roboto Slab", "Times New Roman", serif;
}
.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.blog-card-caption, .blog-card-caption a {
    color: #333;
    text-decoration: none;
}

p {
    color: #3C4857;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}
.blog-card .ftr {
    margin-top: 15px;
}
.blog-card .ftr .author {
    color: #888;
}

.blog-card .ftr div {
    display: inline-block;
}
.blog-card .author .avatar {
    width: 36px;
    height: 36px;
    overflow: hidden;
    border-radius: 50%;
    margin-right: 5px;blog-
}
.blog-card .ftr .stats {
    position: relative;
    top: 1px;
    font-size: 14px;
}
.blog-card .ftr .stats {
    float: right;
    line-height: 30px;
}
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"/>
<div >
  <div >
    <div >
  <div >
    <div >
        <a href="#"> <img  src="https://picsum.photos/id/1084/535/353?grayscale"> </a>
        <div ></div>
    </div>
    <div >
        <h6 ><i ></i> News</h6>
        <h4 >
            <a href="#">Lorem Ipsum is simply dummy text of the printing and</a>
        </h4>
        <p >Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
        <div >
            <div >
                <a href="#"> <img src="https://picsum.photos/id/1005/5760/3840" alt="..." > <span>Lorem</span> </a>
            </div>
            <div > <i ></i> 10 min </div>
        </div>
    </div>
</div>
</div>
    
    
    <div >
  <div >
    <div >
        <a href="#"> <img  src="https://picsum.photos/id/1084/536/354?grayscale"> </a>
        <div ></div>
    </div>
    <div >
        <h6 ><i ></i> News</h6>
        <h4 >
            <a href="#">Lorem Ipsum is simply dummy text of the printing and</a>
        </h4>
        <p >Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
        <div >
            <div >
                <a href="#"> <img src="https://picsum.photos/id/1005/5760/3840" alt="..." > <span>Lorem</span> </a>
            </div>
            <div > <i ></i> 10 min </div>
        </div>
    </div>
</div>
</div>
    
    <div >
  <div >
    <div >
        <a href="#"> <img  src="https://picsum.photos/id/1084/536/354?grayscale"> </a>
        <div ></div>
    </div>
    <div >
        <h6 ><i ></i> News</h6>
        <h4 >
            <a href="#">Lorem Ipsum is simply dummy text of the printing and</a>
        </h4>
        <p >Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
        <div >
            <div >
                <a href="#"> <img src="https://picsum.photos/id/1005/5760/3840" alt="..." > <span>Lorem</span> </a>
            </div>
            <div > <i ></i> 10 min </div>
        </div>
    </div>
</div>
</div>
  </div>
</div>

<!-- Credit: www.bootdey.com/snippets/view/Responsive-UI-Card -->

  • Related