07 November 2017

What is SEO (Search Engine Optimization)


  • SEO stands for "Search engine optimization".  
  • All major search engines such as Google, Bing and Yahoo have paid and unpaid search results.  
  • SEO  is the process of getting more visitor to a website from  search engine's  Unpaid, natural, organic results. 
  • SEO professionals do On Page SEO and Off Page SEO to get more visitors to a website from Search Engine results.

The Art of SEO: Mastering Search Engine Optimization

07 September 2017

Difference between HTML and HTML5



  • Hypertext Markup Language (HTML) is the standard markup language for creating web pages and web applications.
  • HTML5 is the W3C Recommendation which adds more powerful features such as header,footer,canvas,audio and video tag support. 
  • Every website is created with HTML and not all modern website is developed with html5 standard.
  • If you know HTML very well then  you can create any Web sites.
  • HTML is very easy to learn.
  • As html5 is the latest version of html,so definitely html5 is better than html. 
  • By following this HTML tutorial series, you will be an expert on HTML.
    Example of popular websites are news website, search engine , video, email, social, sports, social network, games etc    
  • Example HTML5 Code
  •  1
     2
     3
     4
     5
     6
     7
     8
     9
    10
    11
    12
    13
    14
    <!DOCTYPE html>
    <html>
      <head>
        <title>Website Title</title>
      </head>
      <body>
      <h1>HTML TUTORAIL</h1>
        <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. </p>
     <h1>What is Lorem Ipsum?</h1>
        <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. </p>
     <h1>What is Lorem Ipsum?</h1>
        <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. </p>
      </body>
    </html>
    
  • Output of the above HTML Code:
  • HTML TUTORAIL

    Lorem Ipsum is simply dummy text of the printing and typesetting industry.

    What is Lorem Ipsum?

    Lorem Ipsum is simply dummy text of the printing and typesetting industry.

    What is Lorem Ipsum?

    Lorem Ipsum is simply dummy text of the printing and typesetting industry.

Murach's HTML5 and CSS3, 4th Edition

19 June 2017

PHP7 Unable to load php_curl.dll extension on windows


Problem:  

PHP Startup: Unable to load dynamic library 'C:\\php7\\ext\\php_curl.dll' - The operating system cannot run %1.\r\n in Unknown on line 0

Solution:

  • Step1: Uncomment the php_curl.dll from php.ini
  • Step2: Copy the following three files from php installed directory.i.e "C:\\php7".
    1. libeay32.dll,
    2. libssh2.dll,
    3. ssleay32.dll
  • Step3: Paste the files under two place
    1. httpd.conf's ServerRoot directive. i.e "C\Apache24"
    2. apache bin directory. i.e "C\Apache24\bin"
  • Step4: Restart apache.
That's all. I solve the problem by this way.Hope it might work for you.


Mastering PHP 7: Design, configure, build, and test professional web applications

07 May 2017

What is HTML (Hyper Text Markup Language)



  • HTML stands for Hyper Text Markup Language.
  • HTML is the standard markup language for creating Web pages of websites.
  • HTML declare the layout structure of Web pages using markup language code.
  • HTML markup are written by tags (h1, h2 for heading ,p for paragraph and so on)
  • Web Browsers like Mozilla Firefox, Google Chrome , Internet Explorer etc are used to show HTML output.
  • When we visit a website such as http://www.facebook.com we see the output of html code that was written for facebook.
  • Web browsers render the html source code to human readable format which is displayed as images, text,multimedia contents. 
  • Beside html, CSS , JavaScript are also use within a html page.
browsers
Web Browsers are Used to Show HTML Output

HTML: A Beginner's Guide, Fifth Edition

Featured Post

How to Write PHP code and HTML code within a same file

A PHP file can have both PHP code and HTML code together. Any HTML code written outside of PHP <?php //php code here… ?> Code is ig...

Popular Posts