English, asked by kkavinkumarmanoharan, 1 month ago

Image credit: Times of India
OR
(8) The chart below shows the percentage of unemployment rate in different states of India. Write a
paragraph analyzing the given data, by reporting the features and making comparisons where relevant.
Business Today.in
STATE WISE UNEMPLOYMENT RATE
APRIL 2020 (9)
Puducherry
75.8
Tamil Nadu
49.8
Jharkhand
473
Bihar
46.6
Haryana
432
Tripura
41.2
Karnataka
29.8
Odisha
23.8
Uttar Pradesh
21.5
Maharashtra
20.9
Andhra Pradesh
20.5
Gujarat
18.7
Rajasthan
17.7
West Bengal
17.4
17
INDIA
23.5
Delhi
16.7
Madhya Pradesh
12.4
111
IO
85
Meghalaya
Uttarakhand
Telangana
Chhattisgarh
Punjab
Sikkim
Himachal Pradesh​

Answers

Answered by anjalimaurya3876
1

most notable are Alexander Pope, John Dryden, John Milton, Jonathan Swift, and Joseph Addison.

the eighteenth century was a period of intellectual, social, and political ferment. This time is often referred to as the Age of Enlightenment, for it was in the 18th century that the ideas of the previous 100 years were implemented on a broad scale.1

8

How do you make blinking text in HTML?

Is your design persuasive?

Profile photo for Wasim Momin

Wasim Momin

Answered January 9, 2018

using the keyframes property you can make a blinking text in HTML.

e.g

<div class=”txt-blink”>”Blinking Text”</div>

.txt-blink{

animation: 0.3s linear 0s normal none infinite running animate-blink;

-webkit-animation: 0.3s linear 0s normal none infinite running animate-blink;

-moz-animation: 0.3s linear 0s normal none infinite running animate-blink;

-ms-animation: 0.3s linear 0s normal none infinite running animate-blink;

-o-animation: 0.3s linear 0s normal none infinite running animate-blink;

}

keyframes animate-blink {

0%, 100% { opacity: 1.0; }

50% { opacity: 0.0; }

}

@-moz-keyframes animate-blink {

0%, 100% { opacity: 1.0; }

50% { opacity: 0.0; }

}

@-webkit-keyframes animate-blink {

0%, 100% { opacity: 1.0; }

50% { opacity: 0.0; }

}

@-o-keyframes animate-blink {

0%, 100% { opacity: 1.0; }

50% { opacity: 0.0; }

}

@-ms-keyframes animate-blink {

0%, 100% { opacity: 1.0; }

50% { opacity: 0.0; }

}

Similar questions