"POrtfolio"
Bootstrap 3.0.0 Snippet by gbdevteam

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
34
35
36
37
<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="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<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="container">
<ul class="col">
<li class="partial">
<a href="#" class="bg-five">
<h2>Lorem ipsum dolor sit amet, consectetur adipiscing elit</h2>
<p>By John Doe from Spain</p>
</a>
</li>
<li class="partial">
<a href="#" class="bg-two">
<h2>Lorem Ipsum dolor sit amet</h2>
<p>By John Doe from Spain</p>
</a>
</li>
</ul>
<ul class="col">
<li class="partial">
<a href="#" class="bg-four">
<h2>Lorem Ipsum dolor sit amet</h2>
<p>By John Doe from Spain</p>
</a>
</li>
<li class="partial">
<a href="#" class="bg-one">
<h2>Lorem Ipsum dolor sit amet</h2>
<p>By John Doe from Spain</p>
</a>
</li>
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
34
35
36
37
/*--Generic classes--*/
::selection{
color: tomato;
background: royalblue;
}
html {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
height: 100%;
-webkit-font-smoothing: antialiased !important;
}
*, *:before, *:after {
-webkit-box-sizing: inherit;
-moz-box-sizing: inherit;
box-sizing: inherit;
}
ul{
list-style-type: none;
padding: 0;
margin: 0;
}
a{
text-decoration: none;
color: inherit;
-webkit-transition: all 0.2s ease;
-moz-transition: all 0.2s ease;
-o-transition: all 0.2s ease;
transition: all 0.2s ease;
}
.container{
width: 1024px;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: