Posts Under Basics Category

Add a Video To Website by Embedding it in HTML

Add a Video To Website by Embedding it in HTML

Many people want to add videos into their websites for various reasons.  Times have changed and there are different ways of embedding videos into your website.  We will give you both options and then also tell you which one is the best way to handle this. 1. Upload Video to your server/Embed Object into HTML Make sure your video is an avi or mpg and upload your video onto your server. Use this ...

How to add a link on a webpage

How to add a link on a webpage

Adding a link in the same window. <a href=”http://www.studyhtml.com”>Learn HTML Online</a> This will create: Learn HTML Online Adding a link that opens up a new window <a href=”http://www.studyhtml.com” target=”_blank”>Learn HTML Online</a> This will create: Learn HTML Online

301 Redirect non www to www with htaccess file

301 Redirect non www to www with htaccess file

Add this line of code to your .htaccess file.   RewriteEngine on RewriteCond %{HTTP_HOST} ^domain.com [NC] RewriteRule ^(.*)$ http://www.domain.com/$1 [L,R=301] If you do not have a .htaccess file save a normal notepad file names .htaccess and upload it to your root directory. *** This will only work on a Linux server. If you are running a windows based server you must make changes to your web.c...

Finishing Up Your Blank HTML/CSS Pages

Finishing Up Your Blank HTML/CSS Pages

I don’t know if I actually told you, but the ‘basics’ category will just consist of the other articles in the category, with this one finishing up.

Adding Meta Tags, Stylesheets, and a Title

Adding Meta Tags, Stylesheets, and a Title

<head>,<title>, <meta> Very important SEO factors depend on these tags. More specifically, the title and meta tags. Some say they’re not that important, but it’s how you write them that determines how important it is for SEO.