HTML or Hyper Text Markup Language is essential to understanding exactly how a webpage or website was created. In order to get a basic conception of this, you can observe the coding of a webpage by executing the following steps in your web browser: View > Page Source or Ctrl + U. This should provide you with a basic comprehension of how HTML is written.
HTML should be utilized using Notepad for Windows users and SimpleText for Mac users. The latest in web standards suggests using lowercase, however HTML is not case sensitive. To find a free template on which to build your site around, click here. Below are a few basic html tags that you can easily implement that can immediately construct a website for your company without you putting forth the money to hire a web developer.
*<b> - bolds certain text
*<ahref ______> - will insert a link
*<title> - names your page
*<br> - inserts a line break
*<image alt=“______”> - creates alternative text if your image is having difficulty loading
*<align=______> - either left, right, center aligns or justifies
*<html> - begins your webpage
*<img src_____> - tells where to find a picture
*<body____> - starts the main content of your page
*<h1> to <h6> - applies headings, with <h1> being the largest
*<hr> - implements a horizontal rule
However, if you have enough financial resources to hire a contractor to design your website for you, it will be money well spent. You have to realize that you do not want to turn searchers away by having a dismal appearance to your website.
Also, be sure to remember that you will always need to close any tag that you implement with </>. For example, if you wanted to bold just the word HTML on your website you will implement the following code: <b>HTML</b>.
The foundation for most webpages is as follows:
<html><head><title>Titles your page</title> </head>
<body>This is where you would usually begin typing the content for your page.</body> </html>
You can implement text, links, media and sounds all in one encompassing website that could propel your company to the next level. In today’s modern world, a company that does not posses a website losses a very, very, very significant edge over their competition. Even having a very basic website and obtaining a web presence could mean the difference between success and failure.
Take a free online HTML tutorial!