"Online Store Input Form"
Bootstrap 3.2.0 Snippet by Qamarabbas

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.2.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.2.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 rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.1/css/all.min.css"
integrity="sha256-mmgLkCYLUQbXn0B1SRqzHar6dCnv9oZFPEC1g1cwlkk=" crossorigin="anonymous" />
<div class="container">
<div class="postAttribute">
<div class="row">
<h2>SELECTED CATEGORY</h2>
<ol class="breadcrumb">
<li>category 1</li>
<li class="active">Subcategory 1</li>
</ol>
<hr>
</div>
<div class="row">
<form action="">
<div class="col-md-8">
<div class="row">
<h2>INCLUDE SOME DETAILS</h2>
<div class="form-group">
<label for="">Ad Title <span class="star">*</span></label>
<input type="text" name="" id="" class="input-lg form-control">
</div>
<div class="form-group">
<label for="">Description <span class="star">*</span></label>
<textarea name="" id="" cols="30" rows="5" class="form-control"></textarea>
</div>
<hr>
</div>
<div class="row">
<h2>SET A PRICE</h2>
<div class="form-group">
<label for="">Price <span class="star">*</span></label>
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
/* postAttribute */
.postAttribute {
border: 1px solid #cccc;
padding: 2em;
}
.postAttribute h2{
font-size: 20px;
font-weight: 700;
}
.postAttribute .col-md-8 h2{
font-size: 20px;
font-weight: 700;
}
/* postImage */
.uploadPicture .wrapper {
width: 15vh;
height: 15vh;
border: 1px solid #ccc;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
cursor: pointer;
position: relative;
}
.uploadPicture .wrapper:hover {
text-decoration: none;
background: yellowgreen;
color: white;
}
.uploadPicture .wrapper .file {
width: 100%;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: