how to insert image in textbox and can we divide header and footer in 3 parts ? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 15

how to insert image in textbox and can we divide header and footer in 3 parts ?

I want tu divide header in 2 parts 1. Logo of google 2. Google link (open box)

10th Jun 2019, 10:15 AM
Komal 👩‍💻
Komal 👩‍💻 - avatar
4 Answers
+ 16
Okay, So you want something like this pattern ? --------------------------------- | logo | link | --------------------------------- Then you can make using <div>. <div class="container"> <div class="logo"> </div> <div class="link"> </div> </div> And CSS styling, .logo, .link { float : left; } And also add a border to the container so that it would be clearly visible. Hope This Helps !!!
10th Jun 2019, 10:43 AM
Nova
Nova - avatar
+ 14
You can insert an image in the text box using inline styling : <input type="text" style="background-image: url(image_link);"> Can you elaborate that header-footer thing ? I didn't get what you want to say
10th Jun 2019, 10:32 AM
Nova
Nova - avatar
+ 1
khole thomposn, please stop spamming. If you continue, your account will be banned.
11th Jun 2019, 4:11 PM
khole thomposn
khole thomposn - avatar
- 2
Hi
12th Jun 2019, 3:02 AM
Stella GoodMan
Stella GoodMan - avatar