Download: stylesheet template and its usage

Hi guys,
Creating custom made websites requires you to have a stylesheet file written in conjunction to including Bootstrap, Font Awesome, jQuery, etc. Every time I want to create a new website, I write a new stylesheet file, and I have never found a site that has all I needed. So, I compiled everything that I need in one file. It only has the selector names but no style, but I just need a skeleton ready. I also have the following code to start off your webpage and include the file.
Download: stylesheet-template
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>My Title</title> <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" /> <meta http-equiv="Pragma" content="no-cache" /> <meta http-equiv="Expires" content="0" /> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="description" content="MySite"> <meta name="author" content="MySite.com"> <meta name="ROBOTS" CONTENT="NOINDEX, NOFOLLOW, NOARCHIVE"> <script src="//stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script> <script src="//code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script> <script src="//cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script> <link rel="stylesheet" href="//stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous"> <link rel="stylesheet" href="//use.fontawesome.com/releases/v5.0.10/css/all.css"> <link rel="stylesheet" type="text/css" href="stylesheet-template.css" /> </head> <body> <div class="wrapper"> </div> <!-- End wrapper --> </body> </html> |