Skip to content

Instantly share code, notes, and snippets.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Positioning Lab</title>
<style type="text/css">
* {
margin: 0px;
padding: 0px;
}
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>IFSC 1310 | Your name</title>
<meta name="description" content="Keyword Rich Description">
<meta name="author" content="Your Name">
Prototype HTML Document Example (Document Title)
This is the Navigation for the Page
Home
About
Contact
Properly Marking up an HTML Document (Primary Content Heading)
<!doctype html>
<html lang="en">
<head>
<title></title>
<meta charset="utf-8">
<meta name="keywords" content="">
<meta name="description" content="">
<link href="" rel="stylesheet" media="screen">
</head>
<body>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Out with the old...</title>
<link rel="stylesheet" href="path-to-css.css">
<meta name="keywords" content="">
<meta name="description" content="">
<meta name="author" content="">
<link rel="shortcut icon" href="/favicon.ico" />
@ThomasWallace
ThomasWallace / ajax-form.js
Last active December 11, 2015 23:58 — forked from havvg/ajax-form.js
jQuery(function($) {
$('form[data-async]').on('submit', function(event) {
var $form = $(this);
var $target = $($form.attr('data-target'));
$.ajax({
type: $form.attr('method'),
url: $form.attr('action'),
data: $form.serialize(),