-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathformationHTML5.html
More file actions
185 lines (146 loc) · 6.08 KB
/
formationHTML5.html
File metadata and controls
185 lines (146 loc) · 6.08 KB
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
<!--
____
_.' : `._
.-.'`. ; .'`.-.
__ / : ___\ ; /___ ; \ __
,'_ ""=-.:__;".-.";: :".-.":__;.-="" _`,
:' `.t""=-.. '<@.`;_ ',@:` ..-=""j.' `;
`:-.._J '-.-'L__ `-.-' L_..-;'
"-.__ ; .-" "-. : __.-"
L ' /.======.\ ' J
"-. "__" .-"
__.l"-:_JL_;-";.__
.-j/'.; ;"""" / .'\"-.
.' /:`. "-.: .-" .'; `.
.-" / ; "-. "-..-" .-" : "-.
.+"-. : : "-.__.-" ;-._ \
; \ `.; ; : : "+. ;
: ; ; ; : ; : \:
; : ; : ;: ; :
: \ ; : ; : ; / ::
; ; : ; : ; : ;:
: : ; : ; : : ; : ;
;\ : ; : ; ; ; ;
: `."-; : ; : ; / ;
; -: ; : ; : .-" :
:\ \ : ; : \.-" :
;`. \ ; : ;.'_..-= / ;
: "-. "-: ; :/." .' :
\ \ : ;/ __ :
\ .-`.\ /t-"" ":-+. :
`. .-" `l __/ /`. : ; ; \ ;
\ .-" .-"-.-" .' .'j \ / ;/
\ / .-" /. .'.' ;_:' ;
:-""-.`./-.' / `.___.'
\ `t ._ /
"-.t-._:'
********* Welcome my son ! **********
********* Follow me and you'll be a master **********
********* A HTML5 master **********
********* May the force be with You **********
-->
<!-- ***************************************************************** -->
<h3> Speech Input </h3>
<input type="text" x-webkit-speech />
<!-- ***************************************************************** -->
<h3> Input List </h3>
<input list="cars"/>
<datalist id="cars">
<option value="BMW"/>
<option value="Ford"/>
<option value="Volvo"/>
</datalist>
<!-- ***************************************************************** -->
<h3> Details </h3>
<details>
<summary>HTML 5</summary>
This slide deck teaches you everything you need to know about HTML 5.
</details>
<!-- ***************************************************************** -->
<h3> Progress </h3>
<h4> Without a value </h4>
<progress>working...</progress>
<h4> With a Value (x%) </h4>
<!--
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;------------------------ ;; 75%
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-->
<progress value="75" max="100">3/4 complete</progress>
<!-- ***************************************************************** -->
<h3> Date Input </h3>
<input type="date" min="2010-08-14" max="2011-08-14" value="2010-08-14"/>
<!-- ***************************************************************** -->
<h3> Range Input </h3>
<input type="range" min="0" max="50" value="10" />
<!-- ***************************************************************** -->
<h3> Color Input </h3>
<input type="color" placeholder="e.g. #bbbbbb" />
<!-- ***************************************************************** -->
<h3> Number Input <h3>
<input type="number" step="1" min="-5" max="10" value="0" />
<!-- ***************************************************************** -->
<!-- ***************************************************************** -->
<h2> HTML5 and Multimedia </h2>
<h3> Video </h3>
<video id="video" src="movie.webm" autoplay controls></video>
<h3> Audio </h3>
<audio id="audio" src="sound.mp3" controls></audio>
<!-- Canvas will be in next week (We'll make a simple game) -->
<!-- ***************************************************************** -->
<!-- ***************************************************************** -->
<h2>HTML5 new Semantic Elements</h2>
<hr>
<!--
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|| <header></header> ||
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|| <section> || <aside> ||
|| ||||||||||||** <article> **||||||||||||||| || ||
|| || <header></header> || || ||
|| ||||||||||||** <section> **||||||||||||||| || ||
|| || || || ||
|| || || || ||
|| || || || ||
|| || <img /> || || ||
|| || || || ||
|| || || || ||
|| || || || ||
|| || || || ||
|| ||||||||||||** </section> **|||||||||||||| || ||
|| || <footer></footer> || || ||
|| ||||||||||||** </article> **|||||||||||||| || ||
|| ... || ||
|| || ||
|| </section> || </aside> ||
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|| <footer></footer> ||
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
-->
<header>
<img src="logo.png">
</header>
<nav>
<ul> <!-- this is an unordered list we can use <ol> to a list with numbers (1-item1 2-item 2) -->
<li>HOME</li> <!-- this is a list item -->
<li>About Us</li>
<li>News</li>
</ul>
</nav>
<section>
..
<article>
<header>Post 1 Title</header>
<section>
<figure>
<img src="image-for-post1.jpg" width="500" height="300">
<figcaption>This is an image</figcaption>
</figure>
</section>
<aside>Share in <a href="facebook.com/share.php..">facebook</a></aside>
<footer>Date of Post1</footer>
</article>
..
</section>
<aside><a href="http://www.facebook.com/INSATMicrosoftClub">Viste us in facebook</a></aside>
<footer>Copyright © IMC 2013/2014</footer>