
asianmartt
-
Posts
12 -
Joined
-
Last visited
Posts posted by asianmartt
-
-
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 -
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 -
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.
-
I used this code it works....
-
<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> -
- There are properties to control t XX he choice of font, size, weight, style, and spacing.
-
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>
How to use animation feature in CSS3?
in CSS Help
Posted
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;
}