Skip to content

Instantly share code, notes, and snippets.

View inquisitivequin's full-sized avatar

Jerod Calantoc inquisitivequin

View GitHub Profile
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
<script src="http://code.jquery.com/jquery-1.10.2.js"></script>
<script src="http://jquery-ui-1.11.4/jquery/ui.js"></script>
<style>
#draggable {
body {
text-align: center;
margin-left: 12%;
margin-right: 12%;
background-color: #e0e0e0;
}
table {
color: #2521a0;
margin-left: auto;
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Zombie apocalypse</title>
<link href="css/game.css" type="text/css" rel="stylesheet" />
<link href='http://fonts.googleapis.com/css?family=PT+Sans' rel='stylesheet' type='text/css'>
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
</head>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Donut shop</title>
<link rel="stylesheet" href="css/style.css">
<link href='http://fonts.googleapis.com/css?family=Droid+Sans' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Poiret+One' rel='stylesheet' type='text/css'>
</head>
<body>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Donut shop</title>
<link rel="stylesheet" href="css/style.css">
<link href='http://fonts.googleapis.com/css?family=Droid+Sans' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Poiret+One' rel='stylesheet' type='text/css'>
</head>
<body>
//Donut shop constructor function and three methods
function DonutShop(local, minCustomers, maxCustomers,
avgDonutsCstmr, hoursOp) {
this.local = local;
this.minCustomers = minCustomers;
this.maxCustomers = maxCustomers;
this.avgDonutsCstmr = avgDonutsCstmr;
this.hoursOp = hoursOp;
//Method that returns a random estimate of customers per hour within a range
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Polygon</title>
</head>
<body>
<header>
<article></article>
<article></article>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Donut shop</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="http://code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
<script src="http://code.jquery.com/jquery-1.10.2.js"></script>
<script src="http://code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
</head>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<script type="text/javascript">
function DonutShop(local, minCustomers, maxCustomers,
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Donut shop</title>
<style type="text/css">
body {
text-align: center;
}
table {