Last active
August 12, 2018 21:12
-
-
Save ryanj/94a1439fd343c3958ddabf50540c0cf5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<section id="Getting-Started-with-HTML"> | |
<h1>Getting Started</h1> | |
<p> | |
w/ <code>HTML</code><br/> | |
and Front-End | |
</p> | |
<blink><h1>Web Dev</h1></blink> | |
</section> | |
<section data-markdown id="what-is-html"> | |
what is | |
# HTML? | |
</section> | |
<section data-markdown id="a-markup-language"> | |
## Markup | |
tags or Elements | |
</section> | |
<section id="arcane-tags"> | |
<h2>Arcane Tags</h2> | |
<ul> | |
<li><code><s></code>, <code><strike></code> → <code><del></code></li> | |
<li><code><blink></code></li> | |
</ul> | |
</section> | |
<section data-markdown id="cascading-style-sheets"> | |
# CSS | |
* style tags | |
* style attributes (inline) | |
* CSS selectors | |
* :hover | |
Examples: "color:blue;font-weight:bold;padding-bottom:20px;" | |
</section> | |
<section id="box-model"> | |
<h2>Blocks and the Box Model</h2> | |
<ul> | |
<li><p>, <div></li> | |
<li>align, float</li> | |
</ul> | |
<p>examples:</p> | |
<ul> | |
<li>"display:block;" "display:none;"</li> | |
<li>"padding-left:10px;margin-left:10px;"</li> | |
</ul> | |
</section> | |
<section id="scripting"> | |
<h1>Scripts</h1> | |
<ul> | |
<li>the <code><script></code> tag</li> | |
<li>the <code>onClick</code> attribute</li> | |
</ul> | |
</section> | |
<section data-markdown id="forms-and-input"> | |
## Forms and Input | |
* submit | |
* validation | |
</section> | |
<section data-markdown id="w3schools"> | |
## W3schools | |
http://w3schools.com | |
</section> | |
<section data-markdown id="bootstrap"> | |
## Bootstrap | |
similar tooling: | |
* html5boilerplate, normalizr, modernizr, html5shim | |
</section> | |
<section data-markdown id="the-End"> | |
### the End | |
</section> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment