Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR HTML

best meta tags

<!-- Best Tags to add in your <head>-->
<head>
  <!-- Title of your page -->
  <title>Your title</title>
  <!-- this is for responsive html page -->
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <!-- this is for fontawesome.com it has the best collection of icons-->
  <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css" rel="stylesheet">
  <!--This belongs to bootstrap best css (getbootstrap.com) -->
  <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
  <!-- this velongs to jquery . best js library which makes your life easy !-->
  <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.js"></script>
</head>
 
PREVIOUS NEXT
Tagged: #meta #tags
ADD COMMENT
Topic
Name
5+2 =