×

Welcome to TagMyCode

Please login or create account to add a snippet.
0
0
 
0
Language: HTML
Posted by: Sergio Vazquez II
Added: Mar 16, 2022 1:06 PM
Views: 411
Tags: no tags
  1. <!doctype html>
  2.  
  3.         <meta charset="utf-8">
  4.         <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
  5.         <title>Tailwind - Play CDN</title>
  6.  
  7.         <!-- Tailwind v3 - Play CDN -->
  8.         <script src="https://cdn.tailwindcss.com"></script>
  9.  
  10. </head>
  11.  
  12.  
  13.         <h1 class="text-3xl font-bold underline decoration-sky-500 text-color">
  14.                 Hello world!
  15.         </h1>
  16.  
  17.  
  18. </body>
  19. </html>
  20.