Jump to content

asianmartt

Members
  • Posts

    12
  • Joined

  • Last visited

Everything posted by asianmartt

  1. Use this code and get demo of animation feauture in css3 : @keyframes resize { 0% { padding: 0; } 50% { padding: 0 20px; background-color:rgba(255,0,0,0.2); } 100% { padding: 0 100px; background-color:rgba(255,0,0,0.9); } } #box { animation-name: resize; animation-duration: 1s; animation-iteration-count: 4; animation-direction: alternate; animation-timing-function: ease-in-out; }
  2. Follow and do some following steps these beneficial step might be work : 1. Simplicity– Make the page outline straightforward. Maybe a couple pictures and content. In any case, you likely need wealthier parts on your site. 2. Combination– Taking all the scripts and heaping them into a solitary script and, correspondingly, joining all CSS into a solitary template. 3. Think about actualizing as a substance conveyance system (CDN). 4. Actualize new picture configurations to decrease the extent of your pictures. 5. Assess your plugins. 6.Combine pictures into CSS sprites. 7.Enable pressure. 8. Utilization lapses headers 9. Minify JavaScript and CSS. 10. Audit your facilitating supplier and bun
  3. Caching is an incredible sample of the universal time-space tradeoff in programming. You can spare time by utilizing space to store results. Program: Yo! You got index.html? Server: (Looking it up… ) Disjoin: Totally, fella! It's right here! Program: That's rad, I'm downloading it now and demonstrating the client. (The real HTTP convention may have minor contrasts; see Live HTTP Headers for more points of interest
  4. Add the accompanying direct connection to your HTML code: <a href="http://www.slimproindia.co">Slim pro</a> Supplant the site address with the right connection. Note: If you joined as a member, discover and utilize your subsidiary site code. Most associate locales, for example, Amazon and iTunes, have direct connection generators for their members. Spare your record, sneak peak it in your web program and test that the connection lives up to expectations.
  5. I used this code it works....
  6. <form class="demo"> <select> <option>CSS</option> <option>HTML </option> <option>HTML 5</option> </select> <select class="balck"> <option>CSS</option> <option>HTML </option> <option>HTML 5</option> </select> <select class="option3"> <option>CSS</option> <option>HTML </option> <option>HTML 5</option> </select> </form>
  7. There are properties to control t XX he choice of font, size, weight, style, and spacing. There is a limited choice of fonts that you can assume most people will have installed. If you want to use a wider range of typefaces there are several options, but you need to have the right license to use them. You can control the space between lines of text, individual letters, and words. Text can also be aligned to the left, right, center, or justified. It can also be indented. You can use pseudo-classes to change the style of an element when a user hovers over or clicks on text, or when they have visited a link.
  8. The jQuery library is a single JavaScript file, and you reference it with the HTML <script> tag (notice that the <script> tag should be inside the <head> section First way Download the jQuery library from jQuery.com <head> <script src="jquery-1.11.3.min.js"></script> </head> Second way Include jQuery from a CDN, like Google <head> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script> </head>
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.