Skorpius

HTML5 Boilerplate

May 25th, 2022 (edited)
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.55 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.  
  4. <head>
  5.     <meta charset="utf-8">
  6.     <title>Example Title</title>
  7.     <meta name="author" content="Your Name">
  8.     <meta name="description" content="Example description">
  9.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  10.     <!-- Your Stylesheet -->
  11.     <link rel="stylesheet" href="css/styles.css">
  12.     <link rel="icon" href="favicon.ico" type="image/x-icon">
  13.     <!-- bootstrap CDN Popper in bundle -->
  14.     <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-0evHe/X+R7YkIZDRvuzKMRqM+OrBnVFBL6DOitfPri4tjfHxaWutUpFmBp4vmVor" crossorigin="anonymous">
  15.     <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/js/bootstrap.bundle.min.js" integrity="sha384-pprn3073KE6tl6bjs2QrFaJGz5/SUsLqktiwsUTF55Jfv3qYSDhgCecCxMW52nD2" crossorigin="anonymous"></script>
  16. <!-- Fontawesome -->
  17. <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.1/css/all.css" integrity="sha384-vp86vTRFVJgpjF9jiIGPEEqYqlDwgyBgEF109VFjmqGmIY/Y4HV4d3Gp2irVfcrp" crossorigin="anonymous">
  18.       <!--JQuery -->
  19.     <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
  20. <!-- JQuery UI -->
  21.     <link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/themes/smoothness/jquery-ui.css">
  22. <script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
  23.  
  24. </head>
  25.  
  26. <body>
  27.     <header></header>
  28.     <main></main>
  29.     <footer></footer>
  30.     <script src="js/script"></script>
  31. </body>
  32.  
  33. </html>
Add Comment
Please, Sign In to add comment