Answers for "head tags"

1

head 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/[email protected]/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>
Posted by: Guest on February-02-2022
0

html head

<!--basic head, no Icon or links to css-->
<head>
    <meta charset="utf-8">
    <title>Meine Testseite</title>
  	<!-- charset is for mobile scale -->
  	<meta name="viewport" content="width=device-width, initial-scale=1.0" />
  </head>
Posted by: Guest on November-02-2021

Browse Popular Code Answers by Language