{"id":60,"date":"2012-02-20T15:34:58","date_gmt":"2012-02-20T22:34:58","guid":{"rendered":"http:\/\/wip2.websitespot.com\/?page_id=60"},"modified":"2012-02-20T15:34:58","modified_gmt":"2012-02-20T22:34:58","slug":"basic-html-coding-help","status":"publish","type":"post","link":"https:\/\/www.websitespot.com\/blog\/basic-html-coding-help\/","title":{"rendered":"HTML Help"},"content":{"rendered":"<p>Whether you're building a website from scratch, using a template or even using an online website builder you'll need to know some of the basic commands related to HTML coding.<\/p>\n<p>Below you'll see that I've covered some of the more common HTML tags but if you're interested in reading more on advanced HTML coding I would recommend that you visit <span style=\"font-family: Verdana; font-size: x-small;\"> <a href=\"https:\/\/www.w3schools.com\/html\/default.asp\" target=\"_blank\"> W3SCHOOLS.COM<\/a>. You'll see below that I show you the actual code and just below that you'll see that I show you an example of the actual code in use.<\/span><\/p>\n<h3>HTML Coding Basics<\/h3>\n<p>Before I dive in I'd like to give you some of the basics of HTML. The coding of HTML is based on 'tags' such as &lt;B&gt; would be a tag for <strong>bold. <\/strong>When you use an HTML tag you'll need to open the tag such as &lt;B&gt; and then after your selection you need to close it such as &lt;\/B&gt;. You'll see that it's the exact same entry but I use a slash when I'm closing the HTML tag.<\/p>\n<p>I'm not going to get into the complete structure of a website because with today's <span style=\"font-family: Verdana; font-size: x-small;\">WYSIWYG (What You See Is What You Get) editors the structure is created by the software so you just need to start designing. The two most common HTML editors are Macromedia Dreamweaver and Microsoft FrontPage. If you're familiar with Microsoft Word you may find FrontPage quite a bit easier plus FrontPage is so popular that it's easy for find professional templates that make making a website so much easier.<\/span><\/p>\n<h3>Basic HTML Tags<\/h3>\n<p>Ok, let's get down to some code. I'll give you the information that you need but occasionally you'll find a link that contains more detailed information on that specific tag such as tables and colors. You'll find that I have entered both the opening and closing tag for each.<\/p>\n<p><strong>New Paragraph: &lt;p&gt;\u00a0 &lt;\/p&gt;<\/strong> - This is used for creating a new paragraph.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone\" src=\"https:\/\/www.websitespot.com\/blog\/images\/dottedline.gif\" alt=\"dottedline\" width=\"425\" height=\"10\" border=\"0\" \/><\/p>\n<p><strong>Line Break: &lt;br&gt; - <\/strong>You'll see that there isn't a closing tag because it's not required. Two line breaks are the equivalnt to using a &lt;p&gt; tag.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone\" src=\"https:\/\/www.websitespot.com\/blog\/images\/dottedline.gif\" alt=\"dottedline\" width=\"425\" height=\"10\" border=\"0\" \/><\/p>\n<p><strong>Bold: &lt;b&gt; &lt;\/b&gt; -<\/strong> The allows you to create <strong>bold text<\/strong>.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone\" src=\"https:\/\/www.websitespot.com\/blog\/images\/dottedline.gif\" alt=\"dottedline\" width=\"425\" height=\"10\" border=\"0\" \/><\/p>\n<p><strong>Italics: &lt;i&gt; &lt;\/i&gt; - <\/strong>This tag creates <em>italic text<\/em>.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone\" src=\"https:\/\/www.websitespot.com\/blog\/images\/dottedline.gif\" alt=\"dottedline\" width=\"425\" height=\"10\" border=\"0\" \/><\/p>\n<p><strong>Underline: &lt;u&gt; &lt;\/u&gt; - <\/strong>This tag is used for <span style=\"text-decoration: underline;\">underlined text<\/span>.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone\" src=\"https:\/\/www.websitespot.com\/blog\/images\/dottedline.gif\" alt=\"dottedline\" width=\"425\" height=\"10\" border=\"0\" \/><\/p>\n<p><strong>Font Color: &lt;font color=\"red\"&gt; &lt;\/font&gt; - <\/strong>This tag is used for <span style=\"color: #ff0000;\">changing text color<\/span>.<br \/>\nRead more on <a title=\"Hexadecimal Colors\" href=\"https:\/\/www.websitespot.com\/blog\/hexadecimal-colors\/\">hexadecimal colors<\/a>.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone\" src=\"https:\/\/www.websitespot.com\/blog\/images\/dottedline.gif\" alt=\"dottedline\" width=\"425\" height=\"10\" border=\"0\" \/><\/p>\n<p><strong>Font: &lt;font face=\"Century Gothic\"&gt; &lt;\/font - <\/strong>This tag allows you to <span style=\"font-family: Century Gothic;\">change the font style<\/span>.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone\" src=\"https:\/\/www.websitespot.com\/blog\/images\/dottedline.gif\" alt=\"dottedline\" width=\"425\" height=\"10\" border=\"0\" \/><\/p>\n<p><strong>List: &lt;li&gt; &lt;\/li&gt; -<\/strong> This tag allows you to create a list such as<\/p>\n<ul>\n<li>Groceries<\/li>\n<li>Soccer practice<\/li>\n<\/ul>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone\" src=\"https:\/\/www.websitespot.com\/blog\/images\/dottedline.gif\" alt=\"dottedline\" width=\"425\" height=\"10\" border=\"0\" \/><\/p>\n<p><strong>Centering text: &lt;center&gt; -<\/strong> There is no need to close this tag. It will center your text.<\/p>\n<p>&nbsp;<\/p>\n<h2>Creating Hyperlinks<\/h2>\n<h3>Basic Hyperlinks<\/h3>\n<p>A hyperlink is a clickable link from your website to another website. The code to use is:<\/p>\n<p>&lt;a href=\"https:\/\/www.websitespot.com\/articles\"&gt;Domain Name Registration&lt;\/a&gt;<\/p>\n<p>The link would appear as: <a href=\"https:\/\/www.websitespot.com\">Domain Name Registration<\/a><\/p>\n<h3>Creating Hyperlinks To Open In A New Window<\/h3>\n<p>If you create a link but would like to open a new browser window once it's clicked you can simply add a little more code to accomplish this. I've highlighted the additional code below.<\/p>\n<p>&lt;a <strong>target=\"_blank\" <\/strong>href=\"https:\/\/www.websitespot.com\/articles\"&gt;Domain Name Registration&lt;\/a&gt;<\/p>\n<p>The link would appear as <a href=\"https:\/\/www.websitespot.com\" target=\"_blank\">Domain Name Registration<\/a> but would open a new window when clicked.<\/p>\n<h3>Creating Email Hyperlinks<\/h3>\n<p>If you'd like to add an email address to your website so that people can email you, you can create a hyperlink so that once the link is clicked it automatically opens the visitors default email program.<\/p>\n<p>&lt;a href=\"mailto:your@yourdomainname.com\"&gt; Contact Us&lt;\/a&gt;<\/p>\n<p>The link would appear as: <a href=\"mailto:your@yourdomainname.com\"> Contact Us<\/a><\/p>\n<h2>Creating Website Tables<\/h2>\n<p>The most important area of making a website and creating the layout and look that you want is by far the area of tables. See, tables are what creates the basic layout of your website. For example, this website is made up of 5 main tables.<\/p>\n<p>They are the header, which is the very top of the website. The left navigation, which is where all of the links are on the left hand side of this page. The footer, is at the very bottom of this page. The right navigation where I display relevant websites on the right hand side. Lastly there is the body, this is where I type all of the information on the website.<\/p>\n<p>Without these tables it would be difficult to layout the site as I would like. Since this is such an important part of making a website I have created a specific page for tables. You can view the page by <a>clicking here<\/a>.<\/p>\n<h2>Inserting Images Into A Website<\/h2>\n<p>When you make a website you'll definitely want to insert images. This makes your website more appealing and as they say, \"A picture says a thousand words\" so they can be very descriptive without having to type out a whole long description. Much like tables, images are a very important part of the process to make a website. Please visit my page on <a>inserting images into a website<\/a> for detailed information.<\/p>\n<h2>Website Scripting<\/h2>\n<p>Website scripts are scripts that you place on your website to accomplish just about anything that you'd like from shopping carts to forms. Most scripts are extremely easy to install and I haven't ever installed a script that didn't com with an in depth installation guide.<\/p>\n<p>Read more on <a> website scripts<\/a>.<\/p>\n<h2>Adding A Background<\/h2>\n<p>Just a quick word on backgrounds, if you're going to add a background to your website do it in good taste. What looks good to you may not look good to majority of your visitors. Much like painting your house, what looks good to you may annoy your neighbors. The same holds true for backgrounds, just make sure that you're designing with your visitors in mind and not just yourself.<\/p>\n<h3>Adding A Background Color<\/h3>\n<p>Inserting a background color is very simple. Just make sure you add it to to the inside of your &lt;body&gt; tag. The background color tag is as follows:<\/p>\n<p>&lt;body bgcolor=\"red\"&gt;<\/p>\n<p>To determine the right color code you can visit our page on <a title=\"Hexadecimal Colors\" href=\"https:\/\/www.websitespot.com\/blog\/hexadecimal-colors\/\">hexadecimal colors<\/a>.<\/p>\n<h3>Adding A Background Image<\/h3>\n<p>Keeping with the idea of keeping the look pleasing to the eyes the background image tag is as follows:<\/p>\n<p>&lt;body background=\"images\/linear.gif\"&gt;<\/p>\n<p>This is calling the background image from your images folder that you have uploaded to your <a>web hosting<\/a> account.<\/p>\n<h2>Inserting Bullet Points<\/h2>\n<h3>Inserting Bullet Points<\/h3>\n<p>Bullet points are great for separating a list in an easy to read format. The bullet point tag is as follows:<\/p>\n<p>&lt;ul&gt;<br \/>\n&lt;li&gt; Item 1 &lt;\/li&gt;<br \/>\n&lt;li&gt; Item 2 &lt;\/li&gt;<br \/>\n&lt;li&gt; Item 3 &lt;\/li&gt;<br \/>\n&lt;\/ul&gt;<\/p>\n<p>The code would appear as:<\/p>\n<ul>\n<li>Item 1<\/li>\n<li>Item 2<\/li>\n<li>Item 3<\/li>\n<\/ul>\n<h3>Inserting Circle Bullet Points<\/h3>\n<p>Bullet points are great for separating a list in an easy to read format. The bullet point tag is as follows:<\/p>\n<p>&lt;ul type=\"circle\"&gt;<br \/>\n&lt;li&gt; Item 1 &lt;\/li&gt;<br \/>\n&lt;li&gt; Item 2 &lt;\/li&gt;<br \/>\n&lt;li&gt; Item 3 &lt;\/li&gt;<br \/>\n&lt;\/ul&gt;<\/p>\n<p>The code would appear as:<\/p>\n<ul type=\"circle\">\n<li>Item 1<\/li>\n<li>Item 2<\/li>\n<li>Item 3<\/li>\n<\/ul>\n<h2>Creating Forms<\/h2>\n<p>Again we've run into a topic that requires it's own dedicated page because of the large number of options plus the importance of a form on a website. Please visit <a> creating forms<\/a> for detailed information on creating an online form.<\/p>\n<hr \/>\n<p>That's about it for the basics of HTML coding. As I mentioned at the top of the page, you can find more advanced HTML coding at <span style=\"font-family: Verdana; font-size: x-small;\"> <a href=\"https:\/\/www.w3schools.com\/html\/default.asp\" target=\"_blank\"> W3SCHOOLS.COM<\/a> but this should at least give you a bit more understanding and a great place to start.<\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Whether you're building a website from scratch, using a template or even using an online website builder you'll need to know some of the basic commands related to HTML coding. Below you'll see that I've covered some of the more common HTML tags but if you're interested in reading more on advanced HTML coding I [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"footnotes":""},"categories":[472],"tags":[],"class_list":["post-60","post","type-post","status-publish","format-standard","hentry","category-html-tips"],"jetpack_featured_media_url":"","_links":{"self":[{"href":"https:\/\/www.websitespot.com\/blog\/wp-json\/wp\/v2\/posts\/60","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.websitespot.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.websitespot.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.websitespot.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.websitespot.com\/blog\/wp-json\/wp\/v2\/comments?post=60"}],"version-history":[{"count":0,"href":"https:\/\/www.websitespot.com\/blog\/wp-json\/wp\/v2\/posts\/60\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.websitespot.com\/blog\/wp-json\/wp\/v2\/media?parent=60"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.websitespot.com\/blog\/wp-json\/wp\/v2\/categories?post=60"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.websitespot.com\/blog\/wp-json\/wp\/v2\/tags?post=60"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}