Free Tutorials

Free Tutorials for IT, Web Design/Development & Digital Marketing


IT Fundamentals Tutorial HTML Tutorial

HTML5 Tutorial > SEO Tutorial

Email Marketing Tutorial > Python3 Tutorial


Feb
26
2020

SEO - Relevant Filenames

Structuring Files Proper file naming is important when trying to improve your search engine optimization. Search engines like Google prioritize file-names. You should think about what you won't put on your web page and then give a relevant file name to this page. Certain keywords, when searched on Google produces results with file names highlighted. This means when naming files use the appropriate keywords. File Naming Style 1. The filename should be short and descriptive. 2. Use the same k.

READ MORE
Feb
26
2020

SEO - Web Site Domain

Deciding On A Domain Name The domain name is usually the first taught that comes to mind when you start thinking of doing business through the internet, but there decisions to make before choosing a domain name, they are: 1. Decide on who your target audience is 2. Decide on the value you’re giving or selling to this audience. 3. What makes your business idea unique and different from everything from already existing products. Though it is important to have keywords in a domain, it us.

READ MORE
Feb
26
2020

SEO - Tactics & Methods

What Are SEO Techniques? SEO techniques are classified into two broad categories: 1. White Hat SEO: These are the standard SEO techniques that search engines recommend and approve as part of good SEO practices.  2. Black Hat SEO: Also referred to as the spamdexing technique. These techniques are the bad seo practices that search engines do not approve and attempt to minimize or stop their effect.  White Hat SEO An SEO technique is considered as White Hat if it comprises of the fol.

READ MORE
Feb
26
2020

SEO - Introduction

What Is Search Engine Optimization? Search Engine Optimization (SEO) is the process of improving the quality of pages and content of a website towards increasing search engine rankings and traffic.  When designing and developing one’s website, SEO techniques are needed in order to rank well in global search engine results, thereby improving the volume and quality of traffic to a website, also SEO is a technique for marketing by understanding how search algorithms work, and what sear.

READ MORE
Feb
26
2020

HTML - Frames

What are Frames in HTML? HTML frames are often used to separate your browser window into multiple sections where each section can be responsible for displaying and loading a separate HTML document. a set of frames within the browser window is understood as a frameset. The window is split into frames in quite a similar way then the tables are organized into: 1. rows 2. columns. Disadvantages of Frames There are few cons with using frames, so it is really never recommendable to make use of fr.

READ MORE
Feb
26
2020

HTML - Email Links

It is not really hard to put an HTML email link directly on your webpage and it can cause a lot of unnecessary spamming problems for your email account by people. There are people, who can run programs to reap these sorts of emails and later use them for spamming in various ways. You can have an alternative choice to facilitate people to send you emails. One option might be to use HTML forms to gather user data then use PHP or CGI script to send an email. HTML Email Tag HTML <a>&nb.

READ MORE
Feb
26
2020

HTML - Image Links

Now that we have seen the various way to create text links as explained in the previous tutorial, and we also learned the way to display images in our webpages. Now, we'll find out how to use or make image links. Example It's simple to use a picture as a hyperlink. We just got to use a picture inside hyperlink at the place of text, as shown below : <!DOCTYPE html> <html> <head> <title>Image Hyperlink Example</title> </head> <body.

READ MORE
Feb
25
2020

HTML - Text Links

HTML Text Links A webpage often contains several links that direct you to other pages and even specific sections of a given page. These various links are known as hyperlinks. Hyperlinks let users be able to navigate between various sites on the internet just by clicking on words, phrases, and pictures. Thus you'll learn to create hyperlinks using text or images available on a webpage. Linking Documents A link is specified using an HTML tag. This tag is named anchor tag and anything between t.

READ MORE
Feb
24
2020

HTML5 - Web RTC

What is Web RTC Web RTC introduced by World Wide Web Consortium (W3C). It provides support for browser-to-browser applications for voice calling, video chat, and P2P file sharing. If you want to try out? web RTC available for Chrome, Opera, and Firefox.  Web RTC implements three API's as shown below − MediaStream − get access to the user's camera and microphone. RTCPeerConnection − get access to audio or video calling facility. RTCDataChannel − get a.

READ MORE
Feb
24
2020

HTML5 - CORS

Cross-origin resource sharing (CORS) is a mechanism to allows the restricted resources from another domain in a web browser. For suppose, if you click on HTML5- video player in html5 demo sections. it will ask camera permission. if the user allow the permission then only it will open the camera or else it doesn't open the camera for web applications. Making a CORS request Here Chrome, Firefox, Opera and Safari all use the XMLHttprequest2 object and Internet Explorer uses the similar XDomainRe.

READ MORE