Weekly Update -04
07:23Week04 Learning basic css code & tag :-
1)How to create words into link (#=url)
<a href="#"></a>
2)How to create icture into link (#=url)
<a href="#"><img src"#"></a>
3)To change the words color (link) when cursor over it .
.css: hover{
4)To change the words color (link) when cursor click on it.
.css: active{
5)tag in HTML5
- <header>
- <nav>
- <aside>
- <article>
- <section>
- <footer>
- <main>
6)How to input video in Dw (2 ways)
- insert
- plug in
- select file
- resize
7)Insert video by code (Better ways)
<video src"#" width"x" heigh"y" >
add control for nav bar for video
<video src"#" width"x" heigh"y" controls >
add stay still picture for your video, add poster at behind
<video src"#" width"x" heigh"y"poster="picture" >
autoplay setting for the video, add autoplay behind
<video src"#" width"x" heigh"y" autoplay >
autoplay setting with mute (Like Facebook), add muted behind
<<video src"#" width"x" heigh"y" autoplay muted>
8)How to insert video in more than 1 source (To make sure other browser can support the format)
<video src"#" width"x" heigh"y" controls>
<source src="xx.mp4" type="video/mp4"/>
<source src="xx.ogv" type="video/ogg"/>
Basic css code<<<


0 comments