Skip to content

Instantly share code, notes, and snippets.

View joechan3's full-sized avatar

Joseph Chan joechan3

  • Edmonton, AB, Canada
View GitHub Profile
@joechan3
joechan3 / basicBootstrapHTMLTemplate.html
Last active October 18, 2016 19:25
joechan3's Basic Bootstrap Template using CDNs (from Lynda.com - Course: Bootstrap Essentials Training-Ray Villalobos)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
<!--Picturefill-->
@joechan3
joechan3 / basicHTMLTemplate.html
Last active August 20, 2016 04:48
joechan3's Basic HTML Template (from Lynda.com - Course: HTML Essential Training with James Williamson)
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="A page for exploring basic HTML documents">
<title>Basic HTML document</title>
</head>
<body>
<h1>Page content</h1>
<p>The main page content appears inside the <b>body</b> tag. HTML contains several elements that allow you to properly structure and format your content, which we'll cover later.</p>
@joechan3
joechan3 / AjaxExample.htm
Created April 23, 2016 04:10
Ajax Example from Lynda: JavaScript Essential Training
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<div id="mainContent">
<h1>This is an AJAX Example</h1>
</div>