Cheatography
https://cheatography.com
Covers the HTML, CSS and jS from this course.
This is a draft cheat sheet. It is a work in progress and is not finished yet.
HTML
|
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=fontName">
|
|
<h1 id="elementID">...</h1>
et cetera |
<p id="elementID">...</p>
|
<div id="elementID">...</div>
|
<p id="elementID">...</p>
|
<table id="elementID">...</table>
|
<tr id="elementID">...</tr>
|
<th id="elementID">...</th>
|
<td id="elementID">...</td>
|
<button id="elementID" event = "eventHandler( )>...</button>
|
Events |
|
|
|
|
|
|
javaScript
|
|
for (loopControlVariable; conditionIsTrue; changeLoopControlVariable) { ... }
|
while (conditionIsTrue) { ... }
|
|