Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

CSS using class and lists

<html>
<head>
<title> wiki@akhil </title>
<style>

ul.a{list-style-type:disc;}
ul.a{background-color:yellow;}
ul.a{color:green;}
ul.b{list-style-type:square;}
ul.b{background-color:powderblue;color:black;}

body {background-color: powderblue;}
h1   {color: indigo;
    font-size:50px;}
h3    {color: green;}
</style>
</head>
<body>
    <h1><u><i>Rabindranath Tagore</i></u></h1>
    
    <h3><ul class="a">
        <li>Rabindranath Tagore FRAS (/rəˈbɪndrənɑːt tæˈɡɔːr/ (About this soundlisten); 7 May 1861 – 7 August 1941),also known by his sobriquets Gurudev, Kabiguru, and Biswakabi, was a Bengali polymath, poet, musician, and artist from the Indian subcontinent.He reshaped Bengali literature and music, as well as Indian art with Contextual Modernism in the late 19th and early 20th centuries.</li>
        <li>Author of the "profoundly sensitive, fresh and beautiful verse" of Gitanjali,he became in 1913 the first non-European to win the Nobel Prize in Literature.</li>
        <li>Tagore's poetic songs were viewed as spiritual and mercurial; however, his "elegant prose and magical poetry" remain largely unknown outside Bengal.</li>
        <li>He is sometimes referred to as "the Bard of Bengal".A Pirali Brahmin from Calcutta with ancestral gentry roots in Jessore, Tagore wrote poetry as an eight-year-old. </li>
        <li> At the age of sixteen, he released his first substantial poems under the pseudonym Bhānusiṃha ("Sun Lion"), which were seized upon by literary authorities as long-lost classics.</li>
    </h3></ul>
    <ul class="b">
        <li>LIKE</li>
        <li>SHARE</li>
        <li>SUBSCRIBE</li>
    </ul>
</body>
</html>

Advertisements
Loading...

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.