-
Notifications
You must be signed in to change notification settings - Fork 56
/
s02-01-HTML-CSS-JavaScript.html
462 lines (283 loc) · 7.65 KB
/
s02-01-HTML-CSS-JavaScript.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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
<!doctype html>
<html lang="en">
<meta charset="utf-8" />
<title>websoft</title>
<!-- Mithril HTML Slideshow styles -->
<link href="css/mithril-slideshow.css" rel="stylesheet" />
<!-- Code formatting using highlight.js -->
<link rel="stylesheet" href="css/default.css">
<link rel="stylesheet" href="css/tomorrow.css">
<script src="js/highlight.pack.js"></script>
<!-- Text formatting using Markdown through showdown.js -->
<script src="js/showdown.min.js"></script>
<script data-role="slide" data-markdown type="text/html">
# Software Development for the Web
## HTML, CSS, JavaScript
### Mikael Roos
</script>
<script data-role="slide" data-markdown type="text/html">
# Agenda
* HTML
* CSS
* JavaScript
</script>
<script data-role="slide" data-markdown type="text/html">
# HTML
</script>
<script data-role="slide" data-markdown type="text/html">
# HTML element
```html
<p>
Here is the content in the paragraph.
</p>
```
```html
<p class="blog">
Here is the content in the paragraph.
</p>
```
```html
<starttag attribut="value">
Content of the element
</endtag>
```
</script>
<!-- Slide -->
<script data-role="slide" data-markdown type="text/html">
# Single tag element
```html
<br/>
<hr/>
```
</script>
<!-- Slide -->
<script data-role="slide" data-markdown type="text/html">
# Structure
```html
<!doctype html>
<html>
<head>
</head>
<body>
</body>
</html>
```
</script>
<!-- Slide -->
<script data-role="slide" data-markdown type="text/html">
# Does it validate?
```html
<!doctype html>
<meta charset="utf-8">
<title>Me-page</title>
<h1>About me</h1>
<p>Here is my own me-page.
<img src="img/me.jpg" class="me"
alt="Image on Mikael Roos">
```
</script>
<script data-role="slide" data-markdown type="text/html">
# To use elements
* How many elements are there?
* 120 in the standard?
* 20-40 on an average site?
* HTML 4 versus HTML 5 (5.1, 5.2, etc) versus XHTML
* Anonymous elements (div, span)
* Semantic elements (header, footer, nav, section, article)
</script>
<script data-role="slide" data-markdown type="text/html">
# Block / Inline
* Block (div, h1, p, ul, ol, table)
* Inline (span, s, i, img, a)
</script>
<script data-role="slide" data-markdown type="text/html">
# CSS
</script>
<!-- Slide -->
<script data-role="slide" data-markdown type="text/html">
<iframe src="https://arkiv.dbwebb.se/kod-exempel/css/page-nostyle.html" width="1024" height="900" frameborder="0"></iframe>
</script>
<!-- Slide -->
<script data-role="slide" data-markdown type="text/html">
<iframe src="https://arkiv.dbwebb.se/kod-exempel/css/page.html" width="1024" height="900" frameborder="0"></iframe>
</script>
<!-- Slide -->
<script data-role="slide" data-markdown type="text/html">
# Style with CSS
```html
<link rel="stylesheet" href="style.css">
```
</script>
<!-- Slide -->
<script data-role="slide" data-markdown type="text/html">
# CSS rule
```css
body {
background-color: #E9E9E9;
}
h1,
p {
font-family: georgia, "Times New Roman", serif;
font-size: 19px;
}
```
</script>
<!-- Slide -->
<script data-role="slide" data-markdown type="text/html">
# CSS syntax
```css
selector { property: value }
selector,
selector {
property: value;
property: value;
}
```
</script>
<!-- Slide -->
<script data-role="slide" data-markdown type="text/html">
# Style what?
```css
h1 { font-weight: bold; }
.warning { color: red; }
#headline { border-bottom: 1 px solid #333; }
```
```html
<h1 id="headline" class="warning">
A bold, red and underlined header.
</h1>
```
</script>
<!-- Slide -->
<script data-role="slide" data-markdown type="text/html">
# Style where?
* External stylesheet in separate file
* `<link rel="stylesheet" href="style.css">`
* Embedded in HTML page head
* `<head><style> </style></head>`
* Inline style in the element
* `<p style="color: red;"></p>`
</script>
<!-- Slide -->
<script data-role="slide" data-markdown type="text/html">
# Which style is used?
Short answer:
* The closer to the element, that rule is used
* Rules are overloaded and overwritten
* `!important` takes precedence
`.red { color: red !important; }`
</script>
<script data-role="slide" data-markdown type="text/html">
# Challenge with HTML?
* Make the structure validate
* A structure easy to style
* Prepare the page for styling
* The structure is search engine friendly
</script>
<script data-role="slide" data-markdown type="text/html">
# Challenge with CSS?
* With small means style a web page
* Style as you may, independent on the HTML structure
* A god base style and structure - easy to modify and extend
* To make HTML and CSS work together
</script>
<!-- Slide -->
<script data-role="slide" data-markdown type="text/html">
# Hjälp to get going
* [MDN overview of elements](https://developer.mozilla.org/en-US/docs/Web/HTML/Element)
* [HTML cheatsheet](https://websitesetup.org/html5-cheat-sheet/)
* [W3C cheatsheet](https://www.w3.org/2009/cheatsheet/)
* Google "mdn html html-element"
* Googla "mdn css property-name"
</script>
<script data-role="slide" data-markdown type="text/html">
# Where to learn more basics?
* [Google Search Engine Optimization
Starter Guide](https://static.googleusercontent.com/media/www.google.co.uk/en/uk/webmasters/docs/search-engine-optimization-starter-guide.pdf)
* [SMACSS Scalable and Modular Architecture for CSS](http://smacss.com/book/)
</script>
<script data-role="slide" data-markdown type="text/html">
# Validators
* Use the validator to check your code
* [HTML](https://validator.w3.org/)
* [CSS](https://jigsaw.w3.org/css-validator/)
* [Unicorn](https://validator.w3.org/unicorn/check)
</script>
<script data-role="slide" data-markdown type="text/html">
# HTML + CSS
* Make them work together
* In a beatiful way
* Make beatiful code
* Thats the challenge
</script>
<script data-role="slide" data-markdown type="text/html">
# JavaScript
</script>
<script data-role="slide" data-markdown type="text/html">
# Why client side scripting?
* More dynamic than CSS can provide
* Animations
* Fetch, display, without reload
* Validate (form) before post
* Graphical widgets
</script>
<script data-role="slide" data-markdown type="text/html">
# JavaScript
* Programming language
* Built in methods
* Document Object Model (DOM)
* Event driven (callbacks)
* Asynchronous requests (fetch)
</script>
<script data-role="slide" data-markdown type="text/html">
#JavaScript code
<pre data-code="c100"></pre>
</script>
<script id="c100" data-role="code" data-language="javascript" type="text/html">
/**
* This is some basics in JavaScript.
*/
// One line comment
var someValue = 42;
var someString = "42";
if (someValue == "42") {
console.log("Yes, its 42 alright.");
}
if (someString === "42") {
console.log("Yes, its 42 alright.");
}
// Short syntax for an if statement
var res = someValue === 42 ? 42 : "42";
console.log(res);
var i = 0;
while (i < 42) {
i++;
}
console.log(i);
for (i = 37; i <= 42; i++) {
console.log(i);
}
function alpha(x, y) {
return x + y;
}
console.log(alpha(40, 2));
</script>
<script data-role="slide" data-markdown type="text/html">
# Browser incompatibility
* [Can I Use](https://caniuse.com/)
</script>
<script data-role="slide" data-markdown type="text/html">
# Frameworks
* CSS frameworks
* JavaScript frameworks
* [The state of JavaScript](https://2019.stateofjs.com/)
</script>
<script data-role="slide" data-markdown type="text/html">
# Last words
* Questions on that?
</script>
<script data-role="slide" data-markdown type="text/html">
</script>
<!-- include essential js-script -->
<script src="js/mithril.min.js"></script>
<script src="js/mithril-slideshow.js"></script>