Category Archives: HTML Tutorials

Free HTML Tutorials

Web-Based Email ?

What is Web-Based Email ? Web-Based Email is an Internet-based email system that lets you send and receive email messages from a Web browser. All you need to use Web-Based Email is an Internet connection and the Internet Explorer Web … Continue reading

Posted in Blogging, Dedicated Server Hosting, HTML Tutorials, technical support, Web Hosting, Web Hosting UK, Windows Web Hosting | Leave a comment

How to disable mod_security for that individual account ?

If you are receiving the error for mod_security, access denied with error code 403 when you check the error logs for any account. You can disable the mod_security for that account by adding a simple code in his .htaccess ================== … Continue reading

Posted in HTML Tutorials | Leave a comment

W3C compliant HTML

When creating a web site in HTML it is important to remember that popular browsers such as Microsoft Internet Explorer, Mozilla Firefox, Opera and others are capable of displaying web pages even if their code is not 100% compliant with … Continue reading

Posted in HTML Tutorials, Web Design, Web Development | 1 Comment

Web Standards

Web standards refer to standards for creating web sites that are internationally agreed on as the best practices, established by the W3C (World Wide Web Consortium) and other standards bodies. Web Standards are basically open standards which are primarlity used … Continue reading

Posted in HTML Tutorials, SEO Articles, Web Design, Web Development | 1 Comment

HTML

An HTML editor is a software application for creating web pages. Although the HTML markup of a web page can be written with any text editor , specialised HTML editors can offer convenience and added functionality. For example, many HTML … Continue reading

Posted in HTML Tutorials, Web Development | Leave a comment

HTML editors

For developing a website you have many choices that you can use. If you already know HTML, you can just use the simplest, most basic program of all – Notepad. In fact, many webmasters do just that, and many of … Continue reading

Posted in HTML Tutorials, Web Development | Leave a comment

HTTP ERRORS

When a browser requests a service from a web server, an error might occur. This is a list of HTTP status messages that might be returned: 1xx: Information Message: Description: 100 Continue Only a part of the request has been … Continue reading

Posted in HTML Tutorials | Leave a comment

HTML

Hyper Text Mark-Up Language (HTML) is the coding language used for creating World Wide Web pages. It is used to structure information — denoting certain text as headings, paragraphs, lists and so on — and can be used to define … Continue reading

Posted in HTML Tutorials | 2 Comments

redirecting http://domain to https://domain

To redirect http://domain to https://domain you need to put the following redirect rule in .htaccess under public_html. RewriteEngine on Options FollowSymLinks RewriteCond %{SERVER_PORT} !^443$ RewriteRule ^.*$ https://%{SERVER_NAME}%{REQUEST_URI} [L,R] To use this rule mod_rewrite module should be installed on the server … Continue reading

Posted in HTML Tutorials | Leave a comment