top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

Why HTML is not a programming language?

+2 votes
460 views
Why HTML is not a programming language?
posted Oct 9, 2014 by Anshika Utadi

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+4 votes

HTML is markup language not a programming language.
A programming language is the one who can take input, process that input, make decisions and produces the output. Typical examples are if-else, loops, variable control etc etc which are missing in HTML.

That is the reason why we call HTML a markup language not a programming language.

answer Oct 9, 2014 by Salil Agrawal
Similar Questions
+1 vote

I have tried to install module PDF::FromHTML from cpan but not able to get it.
Please let me know any other module to do the same. please help

+1 vote

i want to create a chrome extension. its have complex mathematical queries. so i need to use python as scripting language. help me to implement python script in google chrome addon

+3 votes

I scraped products from www.jumia.com this scraping properly working on desktop or laptop systems. but when i will opens my page into mobile phones then scraped product list will not shows. is this possible to scrape products for mobile devices?

please help me and give me a possible solution following code i used:-

<?php  <div class="frstsection">  
                        <div class="selectlist">
                            <p>Jumia Products List</p> 
                            <select id="selectJum" multiple class="form-control">
                                <?php 
                                foreach ($html->find("a[class=itm-link]") as $key => $element) {
                                    //echo '<pre>';
                                    if (!empty($element->attr['title'])) {
                                        ?>
                                        <option value="<?php print($element->attr['title']); ?>" >
                                            <?php
                                            print($element->attr['title']);
                                            $i++;
                                        }
                                       //print('not found');
                                    }
                                    ?> 
                            </select>
                        </div>
                    <div class="clearfix"></div>
                </div> ?>
...