"Profile view"
Bootstrap 4.0.0 Snippet by JRamirez95

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="//maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.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 ---------->
<body>
<div class="container main-secction">
<div class="row">
<div class="col-md-12 col-sm-12 col-xs-12 image-section">
<img src="https://png.pngtree.com/thumb_back/fw800/back_pic/00/08/57/41562ad4a92b16a.jpg">
</div>
<div class="row user-left-part">
<div class="col-md-3 col-sm-3 col-xs-12 user-profil-part pull-left">
<div class="row ">
<div class="col-md-12 col-md-12-sm-12 col-xs-12 user-image text-center">
<img src="https://www.jamf.com/jamf-nation/img/default-avatars/generic-user-purple.png" class="rounded-circle">
</div>
<div class="col-md-12 col-sm-12 col-xs-12 user-detail-section1 text-center">
<button id="btn-contact" (click)="clearModal()" data-toggle="modal" data-target="#contact" class="btn btn-success btn-block follow">Contactarme</button>
<button class="btn btn-warning btn-block">Descargar Curriculum</button>
</div>
<div class="row user-detail-row">
<div class="col-md-12 col-sm-12 user-detail-section2 pull-left">
<div class="border"></div>
<p>FOLLOWER</p>
<span>320</span>
</div>
</div>
</div>
</div>
<div class="col-md-9 col-sm-9 col-xs-12 pull-right profile-right-section">
<div class="row profile-right-section-row">
<div class="col-md-12 profile-header">
<div class="row">
<div class="col-md-8 col-sm-6 col-xs-6 profile-header-section1 pull-left">
<h1>Juan Perez</h1>
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
body{
margin-top: auto;
background-color: #f1f1f1;
}
.border{
border-bottom:1px solid #F1F1F1;
margin-bottom:10px;
}
.main-secction{
box-shadow: 10px 10px 10px;
}
.image-section{
padding: 0px;
}
.image-section img{
width: 100%;
height:250px;
position: relative;
}
.user-image{
position: absolute;
margin-top:-50px;
}
.user-left-part{
margin: 0px;
}
.user-image img{
width:100px;
height:100px;
}
.user-profil-part{
padding-bottom:30px;
background-color:#FAFAFA;
}
.follow{
margin-top:70px;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: