"4 news section"
Bootstrap 3.0.0 Snippet by jeevan123456

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<div class="news-section">
<div class="container">
<div class="col-md-3 news-column">
<img class="img-responsive" src="https://images.pexels.com/photos/7096/people-woman-coffee-meeting.jpg?w=940&h=650&auto=compress&cs=tinysrgb" title="name">
<h4>LOREM IPSUM DOLO</h4>
<p>here are many variations of passages of Lorem Ipsum available,</p>
<a class="news-btn" href="#">More info</a>
</div>
<div class="col-md-3 news-column">
<img class="img-responsive" src="https://images.pexels.com/photos/7096/people-woman-coffee-meeting.jpg?w=940&h=650&auto=compress&cs=tinysrgb" title="name">
<h4>LOREM IPSUM DOLO</h4>
<p>here are many variations of passages of Lorem Ipsum available,</p>
<a class="news-btn" href="#">More info</a>
</div>
<div class="col-md-3 news-column">
<img class="img-responsive" src="https://images.pexels.com/photos/7096/people-woman-coffee-meeting.jpg?w=940&h=650&auto=compress&cs=tinysrgb" title="name">
<h4>LOREM IPSUM DOLO</h4>
<p>here are many variations of passages of Lorem Ipsum available,</p>
<a class="news-btn" href="#">More info</a>
</div>
<div class="col-md-3 news-column">
<img class="img-responsive" src="https://images.pexels.com/photos/7096/people-woman-coffee-meeting.jpg?w=940&h=650&auto=compress&cs=tinysrgb" title="name">
<h4>LOREM IPSUM DOLO</h4>
<p>here are many variations of passages of Lorem Ipsum available,</p>
<a class="news-btn" href="#">More info</a>
</div>
</div>
</div>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
.news-section {
padding: 4em 0 3.5em;
}
a.news-btn {
color: #000;
display: inline-block;
font-weight: 700;
text-transform: uppercase;
text-decoration: none;
background: #008e10;
color: #FFF;
padding: 0.5em 1em;
border-radius: 0.5em;
}
a.news-btn:hover {
background: #161616;
}
.news-column h4 {
font-size: 1.3em;
text-transform: uppercase;
color: #000;
font-weight: 700;
padding: 0.8em 0 0.3em;
margin: 0;
}
.news-column p {
color: #777;
line-height: 1.7em;
padding: 0.1em 0 0em;
display: block;
font-size: 1em;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: