Skip to content

Instantly share code, notes, and snippets.

@aspencer8111
aspencer8111 / dom-manipulation-sample.md
Created December 5, 2017 03:03
Dom manipulation sample

The HTML

<ul id='dress-list'>
  <li class='dresses'>Pink Dress</li>
  <li class='dresses'>Blue Dress</li>
  <li class='dresses'>Black Dress</li>
  <li class='dresses'>Red Dress</li>
</ul>
@aspencer8111
aspencer8111 / table-menu-sample.md
Created December 1, 2017 15:15
table-menu-sample
<table>
  <thead>
    <tr>
      <th>Picture</th>
      <th>Food</th>
      <th>Desc</th>
      <th>Price</th>
    </tr>
 
@aspencer8111
aspencer8111 / reservation-form-sample.md
Last active December 1, 2017 15:37
reservation-form-sample
<form action="#fakeFormProcessor.html" method="post">
  <fieldset>
      <label for="name"></label>
      <input type="text" name="name" value="">
  </fieldset>
  <fieldset>
      <label for="phone"></label>
      <input type="text" name="phone" value="">
  </fieldset>
@aspencer8111
aspencer8111 / table-example.md
Last active December 13, 2017 17:42
table-example
<table>
  <thead>
    ...
  </thead>
  <tbody> <!-- table body declaration -->
    <tr> <!-- table row start -->
      <td>Salad</td> <!-- table body cell -->
      <td>Delicious Cobb Salad</td> <!-- table body cell -->
 $7.99 
@aspencer8111
aspencer8111 / nav-example.md
Created December 1, 2017 14:43
nav-example
<!DOCTYPE html>
<html>
  ...
  <body>
    <header>
     <nav>
       <ul>
         <li><a href='/index.html'>Home</a></li>
 <a href="/about.html">About</a>
@aspencer8111
aspencer8111 / html-sample.md
Last active December 13, 2017 17:41
html-layout-sample
<!DOCTYPE html>
<html>
  <head>
    <title>My First Site</title>
  </head>
  <body>
    <header>This where the logo or top navigation would go!</header>
    <aside class="sidebar">
 This is sidebar text!
@aspencer8111
aspencer8111 / html-starter-example.md
Last active December 13, 2017 17:41
html-starter-example
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title></title>
  </head>
  <body>
    
 
@aspencer8111
aspencer8111 / bad.html
Created September 5, 2017 13:57
Something is wrong
<!-- What is wrong with the HTML snippet below? -->
<div><h1>Hello world!</div></h1>
@aspencer8111
aspencer8111 / math.js
Created September 5, 2017 13:54
JS Scope
// What will the JS below print to the screen once executed?
function foo(x) {
return x + 10
}
function bar(y) {
return foo(y)
}
@aspencer8111
aspencer8111 / var.js
Last active September 8, 2017 16:58
JS Expressions 2
// What is the value of foo here?
var foo;