I have created this repo to store and access several links, images, and resources to make them available globally for use on non-commercial projects.
html boilerplate
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="icon" class="favicon" type="image/ico" href="https://mathcodes.github.io/Portfolio/img/jCircleWhite.ico">
<title>Jon's Page</title>
</head>
<body>
<script src="script.js"></script>
</body>
</html>
css external link
<link rel="stylesheet" type="text/css" href="style.css">
js external link
<script src="script.js"></script>
favicon
<link rel="shortcut icon" href="./images/portfolio/jCircleWhite.ico">
Milligram
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,300italic,700,700italic">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/milligram/1.4.0/milligram.css">
Grommet
npx create-react-app my-app
cd my-app
rm -rf yarn.lock
rm -rf node_modules
npm install
npm start
Next.js
npx create-next-app nextjs-blog --use-npm --example "https://github.com/vercel/next-learn-starter/tree/master/learn-starter"
npm run dev
npm run build
npm start