forked from Auraelius/afe-cards
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.html
executable file
·117 lines (108 loc) · 6.31 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="apple-touch-icon" href="apple-touch-icon.png">
<link rel="stylesheet" href="css/normalize.min.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/local.css">
<script src="js/vendor/modernizr-2.8.3-respond-1.4.2.min.js"></script>
</head>
<body>
<!--[if lt IE 8]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<div class="header-container">
<header class="wrapper clearfix">
<h1 class="title">Notes on web development</h1>
<nav>
<ul>
<li><a href="#learning">Learning</a></li>
<li><a href="#html">HTML</a></li>
<li><a href="#css">CSS/SASS</a></li>
<li><a href="#js">JavaScript</a></li>
<li><a href="#tools">Tools</a></li>
</ul>
</nav>
</header>
</div>
<div class="main-container">
<div class="main wrapper clearfix">
<article>
<header>
<h1>Web Development Notebook</h1>
<p>This is a web development notebook. It includes snippets of information gleaned while learning web development both on my own and at <a href="http://www.portlandcodeschool.com">Portland Code School. </a></p>
</header>
<section>
<h2 id="learning">Learning</h2>
<p>Learning web development can be different from learning other disciplines. These cards are where I recorded things I've learned about learning itself.</p>
<div class="card-container">
<div class="card"><p>Put card here.</p></div>
<div class="card"><p>Put card here.</p></div>
<div class="card"><p>Put card here.</p></div>
</div>
</section>
<section>
<h2 id="html">HTML</h2>
<p>The HyperText Markup Language provides the structure of the web page or application. In the case of static web pages, it also provides the content.</p>
<div class="card-container">
<div class="card"><p>Put card here.</p></div>
<div class="card"><p>Put card here.</p></div>
<div class="card"><p>Put card here.</p></div>
</div>
</section>
<section>
<h2 id="css">CSS/Sass</h2>
<p>Cascading Style Sheets provide the layout, formatting, and additional element that make the web page or application visually interesting and easy to use. Sass, or "Syntactically Awesome Style Sheets" adds a layer of additional language features that make CSS more expressive, efficient and </p>
<div class="card-container">
<div class="card"><p>Put card here.</p></div>
<div class="card"><p>Put card here.</p></div>
<div class="card"><p>Put card here.</p></div>
</div>
</section>
<section>
<h2 id="js">Javascript</h2>
<p>The JavaScript Language provides behavior and data modeling on the client side, the server side, and in the development environment.</p>
<div class="card-container">
<div class="card"><p>Put card here.</p></div>
<div class="card"><p>Put card here.</p></div>
<div class="card"><p>Put card here.</p></div>
</div>
</section>
<section>
<h2 id="tools">Tools</h2>
<p>Editors, command shells, preprocessors, autoprefixers, task runners and other tools make web development possible. Customizing my development environment makes it easier and higher quality.</p>
<div class="card-container">
<div class="card"><p>Put card here.</p></div>
<div class="card"><p>Put card here.</p></div>
<div class="card"><p>Put card here.</p></div>
</div>
</section>
</article>
<aside>
<h3>Glossary</h3>
<p>Knowing the vocabulary terms of web development is required. Here are a few I've picked up along the way.</p>
<dl>
<dt>Foo</dt>
<dd>A throw-away word that people seem to use everywhere. It means whatever people need it to mean at that particular usage.</dd>
<dt>Bar</dt>
<dd>See "Foo"</dd>
</dl>
</aside>
</div> <!-- #main -->
</div> <!-- #main-container -->
<div class="footer-container">
<footer class="wrapper">
<h3>Copyright © 2015 Ima Student</h3>
<p>This work is both my own observations and stuff I've gotten from other places. I try to give credit and links when I can, but I sometimes forget. I'm not trying to take credit for other people's work, tho. I really apreciate the work people have done to make learning web development easier.</p>
</footer>
</div>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="js/vendor/jquery-1.11.2.min.js"><\/script>')</script>
<script src="js/main.js"></script>
</body>
</html>