Website for Oakton High School Computer Science Club(OCS)
Information
Dependencies
GHP: GitHub Pages
Load All external resources(css, js, etc...) that are using https
, or GHP will block them
Use files hosted on GitHub. They'll only be loaded as plain text
Use .php
instead of .html
, but GHP will not display the file correctly
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<!--Bootstrap-->
<link rel="stylesheet" href="/css/style.css" />
<link rel="icon" href="/img/favicon.png" type="image/png" />
</head>
<body>
<nav class="navbar navbar-default navbar-fixed-top" id="navbar"></nav>
<footer class="hidden-xs" id="footer"></footer>
<!--jQuery-->
<script src="/js/main.js" type="text/javascript"></script>
</body>
</html>
- Indentation
- HTML, PHP
- 2 spaces
- Indent and use a blank line to separate
<head>
,<body>
- CSS, JS
- 4 spaces
- HTML, PHP