+ 9

[SOLVED] How to create a div tag with class inner header with will contain three div element .

Anyone tell me how create div tag

15th Jul 2020, 8:58 AM
Ansheeta
Ansheeta - avatar
2 Answers
+ 6
<div class="inner header"> <div></div> <div></div> <div></div> </div> Well you should go through HTML course in here ,if you couldn't figure out how to do this simple thing!!
15th Jul 2020, 9:04 AM
Abhay
Abhay - avatar
+ 3
simply... <div class= "inner_header"> <div></div> <div></div> <div></div> </div> NOTE: I used an underscocre " _ "instead of white spacing , Why? Because using white spacing, I am trying to assign 2 classes to the div element <div class= "inner header"> </div> so your div will have two classes: inner and header
28th Sep 2020, 5:38 PM
LIONEL
LIONEL - avatar