Reputation: 23
How can I make this a code into 'click to call' while leaving the text format alone, if viewed on a mobile browser?
<p class="lplh-29">
<span style="color:#3c3c3c;">
<span style="font-size: 22px;">
<span style="font-family: roboto;">777.111.1234</span>
</span>
</span>
</p>
Upvotes: 2
Views: 1085
Reputation: 18840
<p class="lplh-29">
<span style="color:#3c3c3c;">
<span style="font-size: 22px;">
<span style="font-family: roboto;">
<a href="tel:777.111.1234">777.111.1234<a/>
</span>
</span>
</span>
</p>
If you prefer wrap everything with an anchor tag
<a href="tel:777.111.1234" style="text-decoration: none;">
<p class="lplh-29">
<span style="color:#3c3c3c;">
<span style="font-size: 22px;">
<span style="font-family: roboto;">
777.111.1234
</span>
</span>
</span>
</p>
<a/>
Upvotes: 1