Advertisement
Guest User

Untitled

a guest
Jan 17th, 2017
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <head>
  3. <meta name="viewport" content="width=device-width, initial-scale=1">
  4. <style>
  5. body {
  6. font-family: monospace;
  7. text-align: center;
  8. }
  9. a {
  10. font-size: 24px;
  11. }
  12. code {
  13. font-size: 18px;
  14. line-height: 26px;
  15. white-space: normal;
  16. word-break: break-word;
  17. background-color:lightgray;
  18. padding: 5px;
  19. border-radius: 4px;
  20. }
  21. h1 {
  22. margin-bottom: 5%;
  23. }
  24. </style>
  25. </head>
  26.  
  27. <body>
  28. <h1>Run this Snippet on an actual mobile device to check if it supports the special links</h1>
  29. <hr>
  30.  
  31. <pre></pre>
  32. <a href="mailto:mail@emb.com"> Send a Mail</a>
  33.  
  34. <pre></pre>
  35. <a href="sms:+919999999999?body=Hello World!"> Send a SMS</a>
  36.  
  37. <pre></pre>
  38. <a href="tel:5555555555">Call Me Now</a>
  39. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement