Bootstrap snippet and html example. user page with input post

Bootstrap 3.3.4 snippet "user page with input post" with HTML, CSS, and JS. Copy, paste, and customize this responsive UI component for your project.
Tags: user,profile,post,list,social

HTML code

Clean, semantic HTML that powers this Bootstrap 3.3.4 snippet. Copy and paste it into your page (with Bootstrap loaded) to reproduce the exact layout shown in the preview.

<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet">
<div class="container bootstrap snippets bootdey">
    <div class="row">
        <div class="col-md-7">
            <section class="panel">
                <div class="panel-body profile-wrapper">
                    <div class="col-md-3">
                        <div class="profile-pic text-center">
                            <img src="https://bootdey.com/img/Content/user-453533-fdadfd.png" alt="" class="img-circle">
                        </div>
                    </div>
                    <div class="col-md-9">
                        <div class="profile-info">
                            <h1>Aaron Adams</h1>
                            <span class="text-muted">UI Designer</span>
                            <p>
                                Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
                            </p>
                            <div class="connect">
                                <button type="button" class="btn btn-success btn-trans"><span class="fa fa-check"></span> Following</button>
                                <button type="button" class="btn btn-primary btn-trans"><span class="fa fa-comments"></span> Chat</button>
                            </div>
                            <div class="social">
                                <ul>
                                    <li><a href="#"><i class="fa fa-lg fa-facebook"></i></a>
                                    </li>
                                    <li><a href="#"><i class="fa fa-lg fa-twitter"></i></a>
                                    </li>
                                    <li><a href="#"><i class="fa fa-lg fa-github"></i></a>
                                    </li>
                                    <li><a href="#"><i class="fa fa-lg fa-linkedin"></i></a>
                                    </li>
                                    <li><a href="#"><i class="fa fa-lg fa-instagram"></i></a>
                                    </li>
                                    <li><a href="#"><i class="fa fa-lg fa-dribbble"></i></a>
                                    </li>
        
                                </ul>
                            </div>
                        </div>
                    </div>
                </div>
            </section>
        </div>
        <div class="col-md-5">
            <section class="panel  timeline-post-to">
                <div class="panel-body">
                    <form role="form">
                        <textarea class="form-control" placeholder="What's on your mind?"></textarea>
                        <div class="row">
                            <div class="col-sm-6">
                                <a class="btn btn-sm btn-default"><i class="fa fa-camera"></i></a>
                                <a class="btn btn-sm btn-default"><i class="fa fa-video-camera"></i></a>
                                <a class="btn btn-sm btn-default"><i class="fa fa-music"></i></a>
                                <a class="btn btn-sm btn-default"><i class="fa fa-map-marker"></i></a>
                            </div>
                            <div class="col-sm-6 text-right">
                                <button type="submit" class="btn btn-primary">Post</button>
                            </div>
                        </div>
                    </form>
                </div>
            </section> 
            
             <section class="panel  timeline-post">
                <div class="panel-body" style="height:280px;">
                 post goes here!
                </div>
             </section> 
        </div>       
	</div>
</div>

CSS code

Scoped CSS that styles the component. Paste it after Bootstrap 3.3.4 to keep the design, spacing, and responsiveness consistent.

body {
  color: #565656;
  background: #F0F3F3;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 100%;
  padding: 0px;
  margin: 0px;
  min-height: 100%;
  position: relative;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  margin-top:20px;
}

.panel {
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}

.panel-body {
  padding: 15px;
}

.profile-pic {
  margin: 20px 0 0 0;
}

.profile-pic img {
  border: 7px solid #e5e6ea;
}

img {
  max-width: 100%;
}

h1, .h1 {
  font-size: 1.375em;
}

p {
  font-size: 12px;
}

.profile-info .connect {
  margin: 15px 0 5px 0;
}

.profile-info .connect button {
  margin-right: 15px;
}

.btn-success.btn-trans {
  color: #27b6af;
  background-color: transparent;
  border: solid thin #27b6af;
}

.btn-primary.btn-trans {
  color: #556b8d;
  background-color: transparent;
  border: solid thin #556b8d;
}

.social {
  margin: 0;
  padding: 0;
}

.social ul {
  margin: 0;
  padding: 5px;
}

.social ul li {
  margin: 5px;
  list-style: none outside none;
  display: inline-block;
}

.social i {
  width: 40px;
  height: 40px;
  color: #FFF;
  background-color: #909AA0;
  font-size: 22px;
  text-align: center;
  padding-top: 12px;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
}

.timeline-post-to textarea {
  min-height: 80px;
  margin-bottom: 15px;
}

.form-control {
  border: 2px solid #e8ebed;
  border-radius: 2px;
  box-shadow: none;
  height: 37px;
  padding: 8px 12px 9px 12px;
}

Similar snippets

Bootstrap example and template. Profile options

Profile options

Bootstrap example and template. profile with contact information

profile with contact information

Bootstrap example and template. Material design profile

Material design profile

Bootstrap example and template. top item list

top item list

Bootstrap example and template. bs5 dark footer

bs5 dark footer

Bootstrap example and template. profile with data and skills

profile with data and skills

Bootstrap example and template. direct chat box

direct chat box

Bootstrap example and template. Services

Services

FAQ

How do I use this snippet?

Include Bootstrap 3.3.4, paste the HTML, add the CSS block, and include the JS (if any) to mirror the live preview.

Can I use it in commercial projects?

Yes. It’s free for personal and commercial work; check the snippets license for details.

Is it responsive?

Yes. It inherits the responsive grid and components from Bootstrap 3.3.4.

Bootstrap example and template. user page with input post

About this bootstrap example/template

Optimized for copy‑paste: clean HTML, scoped CSS, and minimal JS so you can ship production‑ready UI faster and keep designs consistent.

Mobile‑first and responsive by default. Tested across modern browsers to reduce polish time on your project.

Already trusted in 9.9K+ views. Reuse this snippet to speed up landing pages, dashboards, or onboarding flows.

Bootstrap 3.3.4

<link rel='stylesheet' href='https://netdna.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css'>

<script src='https://netdna.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js'></script>

This code example is based on bootstrap 3.3.4 and the grid system of this framework

Responsive

Based on bootstrap framework makes all the layouts perfectly responsive for all devices

Crossbrowser compatibility

Tested on all major browsers, it works smoothly on all of them

semantic html 5

Built on html / css3 the code quality is really amazing

Simple Integration

This code example can be simply integrated on existing sites and new ones too, all you need to do is copy the code and start working