Search
 
SCRIPT & CODE EXAMPLE
 

CSS

add profile picture to a form in html and css

<div class="signup-w3ls">
    <div class="signup-agile1">
        <form action="#" method="post">
        
            <div class="form-control">
                <label class="header">Profile Photo:</label>
                
                <input id="image" type="file" name="profile_photo" placeholder="Photo" required="" capture>
            </div>
            
            <div class="form-control">
                <label class="header">Store Name :</label>
                <input type="text" id="store_name" name="store_name" placeholder="Store Name" title="Please enter your First Name" required="">
            </div>
            
            <div class="form-control">
                <label class="header">Store Type :</label>
                <input type="text" id="store_type" name="store_type" placeholder="Store Type" title="Please enter your Last Name" required="">
            </div>

            <div class="form-control">
                <label class="header">Owner Type :</label>
                <input type="text" id="owner_type" name="owner_type" placeholder="Owner Type" title="Please enter a valid email" required="">
            </div>

            <div class="form-control">
                <label class="header">Website :</label>
                <input type="url" id="website" name="website" placeholder="Website" id="password1" required="">
            </div>

            <div class="form-control">
                <label class="header">Contact Number :</label>
                <input type="text" id="contact_number" name="contact_number" placeholder="Contact Number" required="">
            </div>

            <div class="form-control">
                <label class="header">Contact Email :</label>
                <input type="email" id="contact_email" name="contact_email" placeholder="Contact Email" required="">
            </div>
            
            <input type="submit" class="register" value="Register">

        </form>
    </div>
</div>
Comment

PREVIOUS NEXT
Code Example
Css :: how to put an element in front 
Css :: color td first row css 
Css :: background linear gradient opacity css 
Css :: center image in css 
Css :: markdown dont skip space 
Css :: box-sizing border-box vs content-box css 
Css :: mapping and each in sass 
Css :: css to increase font size 
Css :: change text color when scrolling css 
Css :: CSS adding something next to a picture 
Css :: bootstrap table striped change color 
Css :: important css 
Css :: webpack 5 compile scss to css file 
Css :: DOM element add multiple attributes 
Css :: progress bar bootstrap border 
Css :: how to remove default padding of div 
Css :: png image border css 
Css :: scale down image css 
Css :: subtract height css 
Css :: inline block display has margin 
Css :: css em 
Css :: Fixed Button With 100% 
Css :: flex items not taking full width 
Css :: css target type 
Css :: scss color black white 
Css :: react how to wrap 
Css :: css nested 
Css :: how to use flex-shrink in css 
Css :: material design css 
Css :: focus on input change label color 
ADD CONTENT
Topic
Content
Source link
Name
3+7 =