@BhuviHema
Web developer
Nothing here yet.
Nothing here yet.
No blogs yet.
the framework is become so popular today.most of the designers use bootstrap framework.u choose any other framework but follow your own specific needs. go thrw the various templates model library and finaly u create the design create a standart template.framework is not matter for designers.u have to implement the website in standard format that will be a good website
if u want to change the video view in website u can use <iframe> tag instead of <video> tag <iframe width="420" height="315" src="http://www.youtube.com/embed/XGSy3_Czz8k?autoplay=1"> </iframe> The video element allows a browser to play a video natively, as opposed to a plugin like flash, an iframe allows you to load the source of another url into your page. In this video here from the course, the iframe is not playing the video. It's only loading a url which contains code that is playing the video. The reason an iframe was used is because that video was being hosted on vimeo and the iframe code is required in order to embed the vimeo video onto your own web page. So the iframe isn't responsible for playing the video but rather it's responsible for loading the source of a vimeo url onto your own page. That source that is inside the iframe will either contain an object/embed code for flash or it might contain the html5 video element depending on what browser you're using. You'll be able to see this if you use your browser dev tools to inspect the html. You can drill down into the iframe and eventually find the actual code that's playing the video.
If u work in z-index layer better to think as pages of book. Each page can be declared as z-index values, if you declare z-index as 2 it will be came before in z-index 1. when u working in z-index values think each z-index value as pages of book.if you want to read the next page you have to travel or open the previous page same thing in z-index values.u can declare the z-index thrw the valid name for example .firstpage{ z-index:1; } .secondpage{ z-index:2; } you can see the below image for representing z-index values https://cdn.css-tricks.com/wp-content/uploads/2011/09/basicz-index.png