Links for Github pages

less than 1 minute read

Published:

Markdown tips

  1. Github Pages setup tutorial Video
  2. Github Pages themes
  3. Github Flavored Markdown
  4. jekyll installation guide
  5. Website Templete - AcademicPages
  6. Github can’t satisfy your Gemfile dependencies #1208
  7. Configuring a publishing source for your GitHub Pages site
  8. Customization Github pages
  9. Creating and highlighting code blocks 10.Apply color on text in Markdown

HTML tips 1.HTML tutorial-w3schools 2.HTML 教程

2023-04-10

Including Bootstrap’s production-ready CSS and JavaScript via CDN

<!doctype html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Bootstrap demo</title>
    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ" crossorigin="anonymous">
  </head>
  <body>
    <h1>Hello, world!</h1>
    <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ENjdO4Dr2bkBIFxQpeoTz1HIcje39Wm4jDKdf19U8gI4ddQ3GYNS7NTKfAdVQSZe" crossorigin="anonymous"></script>
  </body>
</html>

Leave a Comment

Your email address will not be published. Required fields are marked *

Loading...