+ 1
<div class="scan"> <div class="fingerprint"></div> <h3>Scanning...</h3> </div>
Why is it not working. O/p only show scanning?
7 Answers
+ 4
Looks like you're expecting output like this code
https://code.sololearn.com/W1tZOTnyC38U/?ref=app
If yes, check the CSS as well.
+ 2
Gulafsha
This is html which doesn't show tags on browser. Html show only contents.
So here Scanning.. is content.
+ 2
Gulafsha
What do you want to achieve?
replace > with > and < with <
<div class="scan">
<div class="fingerprint"></div>
<h3>Scanning...</h3>
</div>
+ 2
Just use <xmp> Your codes </xmp>
Like this....
<xmp>
<div class="scan">
<div class="fingerprint"></div>
<h3>Scanning...</h3>
</div>
</xmp>
+ 1
Kashyap Kumar
Looks like he was trying to understand your code about why only showing scanning on screen.
0
So What should I do so that it can show tags ?
0
Okk thank you ... all