Categories: Asp.net
Tags:

Here is the sample code taught in the Class

Learning List Tags

Learning List Tags

<ul style="list-style-type: square;">
    <li>Guava</li>
    <li>Apple</li>
    <li>Grapes</li>
</ul>
<hr/>
<ul style="list-style-type: disc;">
    <li>Coffee</li>
    <li>
        Tea
        <ul>
            <li>Green Tea
                <ul>
                    <li><a href='viewdata.html'>Dark Green Tea</a></li>
                    <li>Light Green Tea</li>
                </ul>
            </li>
            <li>Black Tea</li>
            <li>Chai</li>
        </ul>
    </li>
    <li>Milk</li>
</ul>

<!-- ordered list -->
<h4> Top 5 Programming Languages/Tools for Data Analysis</h4>
<ol>
    <li>Python</li>
    <li>R</li>
    <li>SQL</li>
    <li>Power BI</li>
    <li>Tableau</li>
</ol>


<hr/>
<ol start="10">
    <li>Python</li>
    <li>R</li>
    <li>SQL</li>
    <li>Power BI</li>
    <li>Tableau</li>
</ol>

<hr/>
<ol start="5" reversed="reversed">
    <li>Python</li>
    <li>R</li>
    <li>SQL</li>
    <li>Power BI</li>
    <li>Tableau</li>
</ol>

<hr/>
<ol hidden type="I">
    <li>Python</li>
    <li>R</li>
    <li>SQL</li>
    <li>Power BI</li>
    <li>Tableau</li>
</ol>