Showing posts with label Internet use. Show all posts
Showing posts with label Internet use. Show all posts

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

12 September 2015

How to redirect your website from HTTP to HTTPS on Apache HTTP Web Server


HTTP to HTTPS
  • You can automatically redirect your website visitor from http://www.yourwebsite.com  to https://www.yourwebsite.com  in various ways. 
  • This blog post will show you how to redirect your website from http to https using a simple .htaccess file saved on your web server.
  • Step 1: Install & configure mod_ssl on your Apache HTTP Server.
  • Step 2: Enable the mod_rewrite modules by editing the ‘httpd.conf’ apache configuration file.
  • Step 3: create an ‘.htaccess’ file and write the following code on that .htaccess file & save the file on your web server document root directory.   
  
 RewriteEngine On
 RewriteCond %{HTTPS} off
 RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}

Pro Apache (Expert's Voice)

24 March 2014

How to use same internet connection on multiple devices without buying any Wifi router?


  • If you want to use same internet connection on your laptop, Smartphone, tablet, ipad at a time without buying a wifi router, then this blog post might help you. 

  • Step 1: I am using Teletalk 3G internet line on my laptop computer & you may use any internet connection from your laptop.

Teletalk 3G modem
Teletalk-3G modem

  • Step 3: Open the virtualrouterplus software & don't change the Network Name(SSID). Set a password (i.e shafiq123) & select the shared connection as Teletalk-Internet (your internet connection). 

  • Step 4: Click on Start Virtual router plus
Virtualrouterplus
Virtualrouterplus

  • Step 5: Now your computer will act as a virtual wifi hotspot & you can connect to the internet from any wi-fi  enable SmartPhone or other device using this connection.

  • Step 6: To use the wi-fi hotspot created on step5, enable wi-fi connection from your smart phone, tablet or other devices.

  • Step 7: You will find a wi-fi connection named “virturouterplus.com” which is secure with password, select the connection and set the password (i.e shafiq123) as you have already set on step3.

  • Step 8:Wait sometime to get connected with your virtual wifi-hotspot.
  • Step 9: It's Done. Now you are connected to the internet from your smart devices.
TP-Link N450 Wi-Fi Router - Wireless Internet Router for Home(TL-WR940N)

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