Hub You
#1 in Business Subscribe Email Print

You are here: Home > Internet and Businesses Online > Web Development > Creating Your Own Web Page is Easy - A Tutorial (Part 2)

Tags

  • subheading
  • wrong
  • crowed
  • first onenow
  • rowspan instead
  • mywebpagehtml within

  • Links

  • How to Understand Health Standards for Long Term Care Insurance Enrollment
  • Buying Do-It-Yourself Automotive Equipment
  • Fully Online Life Experience Degrees
  • Hub You - Creating Your Own Web Page is Easy - A Tutorial (Part 2)

    Need A Website Built? 6 Major Web Design Tips to Protect You
    So you decided you need a website and you need to hire someone to make it. Well lookout! You need to be very careful. To stay with a reasonable budget and good service, please follow the following 6 steps to protect yourself.1} Customer Service: This is the most important step. Make sure you can always talk to a real person. If you have to keep using a web support form and phone messages. Then move on. Web design needs real people to create it, and if you cannot talk anytime you want, then your doing business with the wrong company.2} Domain Registration: Make sure the company you pick can buy and maintain your domain. Make sure they know how to set it up correctly for your new website and they make sure it gets renewed every year.3} Web Hosting: Every website needs to be hosted. Does your design company have their own servers? Many do not. Its always nice to only call or contact one company to handle your web design needs and your hosting and Email needs.4} Web Design: Websites do not need to cost you a second mortgage. Most of the time, a simple site is all you need. But many designers build sites as they see it. They normally do not think about how the site needs to perform for the search engines and clients with slow internet connections. A good designer will use ba
    e this example:

    ‹table width="400" border="1" cellspacing="2" cellpadding="4"› ‹tr›‹td rowspan="2"›merge row data‹/td› ‹td›row 1 data 2‹/td›‹/tr› ‹tr›‹td›row 2 data 2‹/td›‹/tr› ‹/table›

    Now, type the above in your mywebpage.html within the body tags, save and refresh your browser. Now, you see that 2 rows in your first column were merged.

    Try creating your own table using different values to familiarize yourself in manipulating tables.

    ‹b›Creating CSS boxes for web page layout‹/b›

    Before, tables are being used as layout of a web page. So, the header, right bars, left bars, main content areas and footer are inside of a table. This slows down the loading of the page as the browser will have to complete first the table before it will display the content. Your visitor may have already left before your page could be displayed. If you prefer to use table as yo

    Blog Key Word Research Guide
    If you have a blog and are not getting and traffic, you may need to learn how to prep for the starting of a new blog project. Of course you are not limited to the following plan, but it is great for beginners or anyone who wants a plan laid out for them. You can always think of an idea for your own blog. That is the way to get the real money. If you create an idea that really draws a crowed and a lot of interest, you will have a great blog. In any case, here are a few suggestions for you.Selecting Key WordsWhen starting your blog, you want to make sure you have one that will draw a crowed. This is for the people who don’t know what people are researching. (Some marketers know how the consumers mind works according to the fullness of the moon). In any case, if you know how many times a key phrase is searched in the search engines, you know the kind of traffic you could be getting.Now we go to the key word generating tool so we can read the web surfers activity. www.inventory.overture.com is a great tool for this. If you are interested in a particular subject, you type it in and get a list of related words with their search volume. You can use this is as an indicator for what your blog should be about. You may want to start a blog about how chickens bladders work, but if people are not inte
    Now, Let's continue with Part 2. We will discuss the following here:

    Creating tables Using CSS boxes as webpage layout

    Here's how:

    Creating tables

    Tables are very useful in the presentation of data. The following are the html tags to be used to create a basic table:

    Single-column table:

    ‹table width="400" border="1" cellspacing="2" cellpadding="4"> ‹tr›‹td›row 1 data‹/td›‹/tr› ‹tr›‹td›row 2 data‹/td›‹/tr› ‹/table›

    Type the above in your mywebpage.html within the body tags, save and refresh your browser. That's the table on the web. Referring to the above html codes, width refers to the width of the whole table (you may also use pixel here like "800"), border is the outside line or outline of the table, cellspacing is the space between the cells, cells are the area where the data are located, cellpadding is the space between border and cells. You may change the values of these table attributes or properties based on your preference or requirement.

    Though the above table html codes are still working, W3C.org requires the table properties or attributes be defined in the style sheets or CSS. Using CSS, the above table properties could be presented as follows:

    Within style tags in the head:

    .type1 {

    width: 400px;

    padding: 4px;

    margin: 2px;

    }

    .border {

    border: 1px solid #000;

    }

    Then, within the body tags:

    ‹table class="type1 border"› ‹tr›‹td›row 1 data‹/td›‹/tr› ‹tr›‹td›row 2 data‹/td›‹/tr› ‹/table›

    Looking at the codes, "type1" is preceded by dot (.), meaning it is a class selector. For the next type of table properties or attributes, you may label it as type2, then type3 and so on or with other names you prefer. "border" is also a class selector and "border: 1px solid #000" is the thickness (1px), border type (solid) and color (#00f) of the border. There are more discussions of CSS in "Creating CSS boxes as web page layout" and in "Using CSS in styling your web pages"

    If you want to try the above, then type the codes within the style and body tags as noted, save it and refresh your browser. It must be the same as the first one.

    Now, let's make a 2-column or multi-column table:

    ‹table width="400" border="1" cellspacing="2" cellpadding="4"› ‹tr›‹td›row 1 data 1‹/td› ‹td›row 1 data 2‹/td›‹/tr› ‹tr›‹td›row 2 data 1‹/td› ‹td›row 2 data 2‹/td›‹/tr› ‹/table›

    Type the above in your mywebpage.html within the body tags, save and refresh your browser. That's the 2-column table on the web. To add a column, just insert ‹td›‹/td› after ‹/td›. 1 ‹td›‹/td› is one column, 1 ‹tr›‹/tr› is one row and 1 ‹table›‹/table› is one table.

    Now, lets make a table with 1 main heading and 3 subheadings:

    ‹table width="400" border="1" cellspacing="2" cellpadding="4"› ‹tr›‹td colspan="3"›Main Heading‹/td›‹/tr› ‹tr›‹td›Subheading 1‹/td› ‹td›Subheading 2‹/td› ‹td›Subheading 3‹/td›‹/tr› ‹tr›‹td›row 1 data 1‹/td› ‹td›row 1 data 2‹/td› ‹td›row 1 data 3‹/td›‹/tr› ‹tr›‹td›row 2 data 1‹/td› ‹td›row 2 data 2‹/td› ‹td›row 2 data 3‹/td›‹/tr› ‹/table›

    Type the above in your mywebpage.html within the body tags, save and refresh your browser. See? Yes, just use colspan to merge the columns. To merge 2 columns, use colspan="2" and for 3 columns, use colspan="3" and so on.

    If you want to merge rows, use rowspan instead of colspan. See this example:

    ‹table width="400" border="1" cellspacing="2" cellpadding="4"› ‹tr›‹td rowspan="2"›merge row data‹/td› ‹td›row 1 data 2‹/td›‹/tr› ‹tr›‹td›row 2 data 2‹/td›‹/tr› ‹/table›

    Now, type the above in your mywebpage.html within the body tags, save and refresh your browser. Now, you see that 2 rows in your first column were merged.

    Try creating your own table using different values to familiarize yourself in manipulating tables.

    ‹b›Creating CSS boxes for web page layout‹/b›

    Before, tables are being used as layout of a web page. So, the header, right bars, left bars, main content areas and footer are inside of a table. This slows down the loading of the page as the browser will have to complete first the table before it will display the content. Your visitor may have already left before your page could be displayed. If you prefer to use table as you

    Adsense Make Money Step By Step Instructions
    Adsense make money step by step instructions from successful and prosperous affiliates are usually sold for a handsome price online. Not all of them contain genuine step by step Adsense make money tips that can make a difference as many people have found out to their bitter disappointment.But to be fair there are quite a number of Adsense make money step by step packages out there that have made a real impact on many Adsense affiliates' incomes. The additional trick that many of them have used and which you too can put to good use is use the Adsense make money step by step instructions as a stepping stone. Meaning that they also add their very own tips and strategy, which they test for themselves before fully implementing on their sites. This Adsense make money step by step approach can also be used with free information available on the net via regular ezines or even web sites or blog sites.The truth is that as simple as the Adsense program looks, it is usually a long complex arduous road that leads to those big fat checks. But this does not mean that it is impossible or too difficult to achieve as long as one is willing to learn step by step as they gradually climb up the ladder of Adsense make money ranks.
    le attributes or properties based on your preference or requirement.

    Though the above table html codes are still working, W3C.org requires the table properties or attributes be defined in the style sheets or CSS. Using CSS, the above table properties could be presented as follows:

    Within style tags in the head:

    .type1 {

    width: 400px;

    padding: 4px;

    margin: 2px;

    }

    .border {

    border: 1px solid #000;

    }

    Then, within the body tags:

    ‹table class="type1 border"› ‹tr›‹td›row 1 data‹/td›‹/tr› ‹tr›‹td›row 2 data‹/td›‹/tr› ‹/table›

    Looking at the codes, "type1" is preceded by dot (.), meaning it is a class selector. For the next type of table properties or attributes, you may label it as type2, then type3 and so on or with other names you prefer. "border" is also a class selector and "border: 1px solid #000" is the thickness (1px), border type (solid) and color (#00f) of the border. There are more discussions of CSS in "Creating CSS boxes as web page layout" and in "Using CSS in styling your web pages"

    If you want to try the above, then type the codes within the style and body tags as noted, save it and refresh your browser. It must be the same as the first one.

    Now, let's make a 2-column or multi-column table:

    ‹table width="400" border="1" cellspacing="2" cellpadding="4"› ‹tr›‹td›row 1 data 1‹/td› ‹td›row 1 data 2‹/td›‹/tr› ‹tr›‹td›row 2 data 1‹/td› ‹td›row 2 data 2‹/td›‹/tr› ‹/table›

    Type the above in your mywebpage.html within the body tags, save and refresh your browser. That's the 2-column table on the web. To add a column, just insert ‹td›‹/td› after ‹/td›. 1 ‹td›‹/td› is one column, 1 ‹tr›‹/tr› is one row and 1 ‹table›‹/table› is one table.

    Now, lets make a table with 1 main heading and 3 subheadings:

    ‹table width="400" border="1" cellspacing="2" cellpadding="4"› ‹tr›‹td colspan="3"›Main Heading‹/td›‹/tr› ‹tr›‹td›Subheading 1‹/td› ‹td›Subheading 2‹/td› ‹td›Subheading 3‹/td›‹/tr› ‹tr›‹td›row 1 data 1‹/td› ‹td›row 1 data 2‹/td› ‹td›row 1 data 3‹/td›‹/tr› ‹tr›‹td›row 2 data 1‹/td› ‹td›row 2 data 2‹/td› ‹td›row 2 data 3‹/td›‹/tr› ‹/table›

    Type the above in your mywebpage.html within the body tags, save and refresh your browser. See? Yes, just use colspan to merge the columns. To merge 2 columns, use colspan="2" and for 3 columns, use colspan="3" and so on.

    If you want to merge rows, use rowspan instead of colspan. See this example:

    ‹table width="400" border="1" cellspacing="2" cellpadding="4"› ‹tr›‹td rowspan="2"›merge row data‹/td› ‹td›row 1 data 2‹/td›‹/tr› ‹tr›‹td›row 2 data 2‹/td›‹/tr› ‹/table›

    Now, type the above in your mywebpage.html within the body tags, save and refresh your browser. Now, you see that 2 rows in your first column were merged.

    Try creating your own table using different values to familiarize yourself in manipulating tables.

    ‹b›Creating CSS boxes for web page layout‹/b›

    Before, tables are being used as layout of a web page. So, the header, right bars, left bars, main content areas and footer are inside of a table. This slows down the loading of the page as the browser will have to complete first the table before it will display the content. Your visitor may have already left before your page could be displayed. If you prefer to use table as yo

    Without Conversion Rates You Don’t Know If You’re Mickey Mouse Or Mickey Mantle
    I couldn’t agree more with the headline of this article and it’s one I’m afraid I can’t take credit for. I found this line in Paco Underhill’s book, Why We Buy – The Science Of Shopping, and found myself comparing many of the things he has measured in the retail world to the tests I’ve done with online, visitor-based activity. The conversion rate on a website is easy to measure. Unfortunately, businesses too busy concentrating on their bottom line most often overlook it. The point of this article is to define what a conversion rate is and show you how you can begin to start improving your own website’s conversion rate and therefore your bottom line. At the same time, I will relate my observations to Paco’s on offline retailing.In Cyberspace No-One Can Hear You ShopAccording to Paco, the main problem with websites is that, owing to media attention and the love of technology, retailers went online without knowing why. It’s true that in the late 90’s businesses were going online because their competition had, or because they feared that they would be left behind by not embracing the new technology. Not great reasons to spend time, money and resources on a website. The painful thing is that, since going online, most of these websites have no
    (#00f) of the border. There are more discussions of CSS in "Creating CSS boxes as web page layout" and in "Using CSS in styling your web pages"

    If you want to try the above, then type the codes within the style and body tags as noted, save it and refresh your browser. It must be the same as the first one.

    Now, let's make a 2-column or multi-column table:

    ‹table width="400" border="1" cellspacing="2" cellpadding="4"› ‹tr›‹td›row 1 data 1‹/td› ‹td›row 1 data 2‹/td›‹/tr› ‹tr›‹td›row 2 data 1‹/td› ‹td›row 2 data 2‹/td›‹/tr› ‹/table›

    Type the above in your mywebpage.html within the body tags, save and refresh your browser. That's the 2-column table on the web. To add a column, just insert ‹td›‹/td› after ‹/td›. 1 ‹td›‹/td› is one column, 1 ‹tr›‹/tr› is one row and 1 ‹table›‹/table› is one table.

    Now, lets make a table with 1 main heading and 3 subheadings:

    ‹table width="400" border="1" cellspacing="2" cellpadding="4"› ‹tr›‹td colspan="3"›Main Heading‹/td›‹/tr› ‹tr›‹td›Subheading 1‹/td› ‹td›Subheading 2‹/td› ‹td›Subheading 3‹/td›‹/tr› ‹tr›‹td›row 1 data 1‹/td› ‹td›row 1 data 2‹/td› ‹td›row 1 data 3‹/td›‹/tr› ‹tr›‹td›row 2 data 1‹/td› ‹td›row 2 data 2‹/td› ‹td›row 2 data 3‹/td›‹/tr› ‹/table›

    Type the above in your mywebpage.html within the body tags, save and refresh your browser. See? Yes, just use colspan to merge the columns. To merge 2 columns, use colspan="2" and for 3 columns, use colspan="3" and so on.

    If you want to merge rows, use rowspan instead of colspan. See this example:

    ‹table width="400" border="1" cellspacing="2" cellpadding="4"› ‹tr›‹td rowspan="2"›merge row data‹/td› ‹td›row 1 data 2‹/td›‹/tr› ‹tr›‹td›row 2 data 2‹/td›‹/tr› ‹/table›

    Now, type the above in your mywebpage.html within the body tags, save and refresh your browser. Now, you see that 2 rows in your first column were merged.

    Try creating your own table using different values to familiarize yourself in manipulating tables.

    ‹b›Creating CSS boxes for web page layout‹/b›

    Before, tables are being used as layout of a web page. So, the header, right bars, left bars, main content areas and footer are inside of a table. This slows down the loading of the page as the browser will have to complete first the table before it will display the content. Your visitor may have already left before your page could be displayed. If you prefer to use table as yo

    Major Obstacles to Selling
    Beware of these common areas that will cause you to lose the deal.1. Negative expectation or prejudging • Takes all enthusiasm out of sales person • Expectations2. Lack of Sincerity • More concerned with earning commission • Concentrate on helping the customer3. Different Wave Length • Analytical Vs emotional • Use tag team sales.4. You can never sell to someone you don't like and vice versa • People skills • Learn to serve5. Tell a prospect is wrong or arguing with them • Never argue with a prospect • A man convinced against his will is of the same opinion still6. Discussing personal subjects • Politics • Religion7. Knocking the Competition • Unprofessional • Lose credibility8. Making promises you can't keep • Engage in overselling • Never say something a product can't do9. Not building the dream • What are the benefits of your product • WIIFM10. Don't give up • Close 5 times • PersistencePower Tools of ClosersAccepts 100% responsibility for their results deal with challenges and losers are making excuses. Winners work Damn hardAbove average ambition and desire to sell.
    › is one table.

    Now, lets make a table with 1 main heading and 3 subheadings:

    ‹table width="400" border="1" cellspacing="2" cellpadding="4"› ‹tr›‹td colspan="3"›Main Heading‹/td›‹/tr› ‹tr›‹td›Subheading 1‹/td› ‹td›Subheading 2‹/td› ‹td›Subheading 3‹/td›‹/tr› ‹tr›‹td›row 1 data 1‹/td› ‹td›row 1 data 2‹/td› ‹td›row 1 data 3‹/td›‹/tr› ‹tr›‹td›row 2 data 1‹/td› ‹td›row 2 data 2‹/td› ‹td›row 2 data 3‹/td›‹/tr› ‹/table›

    Type the above in your mywebpage.html within the body tags, save and refresh your browser. See? Yes, just use colspan to merge the columns. To merge 2 columns, use colspan="2" and for 3 columns, use colspan="3" and so on.

    If you want to merge rows, use rowspan instead of colspan. See this example:

    ‹table width="400" border="1" cellspacing="2" cellpadding="4"› ‹tr›‹td rowspan="2"›merge row data‹/td› ‹td›row 1 data 2‹/td›‹/tr› ‹tr›‹td›row 2 data 2‹/td›‹/tr› ‹/table›

    Now, type the above in your mywebpage.html within the body tags, save and refresh your browser. Now, you see that 2 rows in your first column were merged.

    Try creating your own table using different values to familiarize yourself in manipulating tables.

    ‹b›Creating CSS boxes for web page layout‹/b›

    Before, tables are being used as layout of a web page. So, the header, right bars, left bars, main content areas and footer are inside of a table. This slows down the loading of the page as the browser will have to complete first the table before it will display the content. Your visitor may have already left before your page could be displayed. If you prefer to use table as yo

    Tales from the Corporate Frontlines: Ideas for Everyday Training
    This article relates to the Training competency, commonly evaluated in employee satisfaction surveys. It tells the story of a group of team leaders who worked together to find ways to use information sharing and communication to provide valuable employee training. A Gallup poll conducted in 1998 reported that eight out of 10 employees said they would be more likely to stay with their present employer if they were offered more or better training. Specifically, the questions included in this competency are written to measure the adequacy, availability, content of training, and satisfaction with the delivery of training within your organization.This short story, Ideas for Everyday Training, is part of AlphaMeasure's compilation, Tales From the Corporate Frontlines. It illustrates how one department, under training budget constraints, found creative, low cost ways to use communication as an effective training tool.Anonymous SubmissionSometimes, effective training involves little more than paying extra attention to everyday communication practices. In my department, we have regular lunch meetings, just to touch base and make sure that everyone is aware of any new practices and procedures being implemented company wide, or only within the department.We started this practice last year, wh
    e this example:

    ‹table width="400" border="1" cellspacing="2" cellpadding="4"› ‹tr›‹td rowspan="2"›merge row data‹/td› ‹td›row 1 data 2‹/td›‹/tr› ‹tr›‹td›row 2 data 2‹/td›‹/tr› ‹/table›

    Now, type the above in your mywebpage.html within the body tags, save and refresh your browser. Now, you see that 2 rows in your first column were merged.

    Try creating your own table using different values to familiarize yourself in manipulating tables.

    ‹b›Creating CSS boxes for web page layout‹/b›

    Before, tables are being used as layout of a web page. So, the header, right bars, left bars, main content areas and footer are inside of a table. This slows down the loading of the page as the browser will have to complete first the table before it will display the content. Your visitor may have already left before your page could be displayed. If you prefer to use table as your layout, you have to avoid using big tables. You better use small tables to allow the browser display your page little by little but faster.

    Though table could still be used, W3C requires CSS boxes to be used for layout instead of tables due to the issue of accessibility. CSS boxes load faster than tables. These could be controlled within the style sheets that could be within the head tags or in separate CSS file. The most critical part in css boxes is the positioning. So, I'll explain to you the positioning properties of these boxes, based on my experience:

    position: absolute - You have to define the x-axis and y-axis as point of reference of the corner of the box. x-axis is either left or right and y-axis is either top or bottom. You have to define also the width or the left and right margin or padding of the box. The box is not affected by the preceding or subsequent boxes. Likewise, the boxes preceding or following the boxes that are positioned as absolute are also not affected.

    float: left or right - You need to fix the width. You also need to select if left or right. The box will lean on the side you selected. It will lean on the box preceding it if there is enough space for it. This is affected by the other boxes except for the absolutely positioned boxes.

    no position or position: static or fixed - This follows the normal flow. This is also affected by the other boxes except for the absolutely positioned ones. You need to define the width or the left and right margin.

    Now, see the illustration below that will create 5 boxes, namely: headerbox, leftbox, centerbox, rightbox and footerbox. These are liquid boxes, which automatically adjust in width when the display window size of the computer is changed:

    ‹style type="text/css"› body {

    text-align: center;

    margin: 1px;

    } #headerbox {

    width: 100%;

    height: 15%;

    background-color: #9cf;

    border: 1px solid #00f;

    padding: 0px 0px 0px 0px;

    margin: 0px 0px 0px 0px;

    }

    #rightbox {

    float: right;

    width: 20%;

    margin-top: 5px;

    text-align: center;

    background-color: #cff;

    border: 1px solid #00f;

    height: 100%;

    } #leftbox {

    float: left;

    margin-top: 5px;

    width: 20%;

    text-align: center;

    background-color: #cff;

    border: 1px solid #00f;

    height: 100%;

    }

    #centerbox {

    width: 99%;

    margin-top: 5px;

    text-align: center;

    background-color: #cff;

    border: 1px solid #00f;

    height: 100%;

    }

    #footerbox {

    width: 100%;

    text-align: center;

    height: 15%;

    vertical-align: middle;

    margin-top: 5px;

    background-color: #9cf;

    border: 1px solid #00f;

    }

    ‹/style› ‹/head› ‹body›

    ‹div id="headerbox"›HEADERBOX content area‹/div›

    ‹div id="leftbox"›LEFTBOX content area‹/div›

    ‹div id="rightbox"›RIGHTBOX content area‹/div›

    ‹div id="centerbox"›CENTERBOX content area‹/div›

    ‹div id="footerbox"›FOOTERBOX content area‹/div›

    ‹/body›

    First, you type the above html codes to you mywebpage.html within the head, style and body tags as noted in the above. Then, save it and refresh your browser or open the file with your browser. Are you seeing the headerbox on the top, the leftbox, rightbox and centerbox in the middle and footerbox at the bottom? Try to change the width of your browser window. See? The width of the boxes are also adjusting and that is excellent as your page will auto-adjust depending on the browser window size of your visitors! That is because I used %s in defining the width of boxes.

    Now, let me explain the above codes for creating boxes as your layout.

    headerbox - preceded with #, meaning it is an id selector and could be used only once per page; float: left means the box will lean on the left if fit; width: 100% means the box is 100% of the browser window and that is the reason

    HTTP = HTML link (for blogs, profiles,phorums):
    <a href="http://www.iadvice.info/article/86969/iadvice-Creating-Your-Own-Web-Page-is-Easy--A-Tutorial-Part-2.html">Creating Your Own Web Page is Easy - A Tutorial (Part 2)</a>

    BB link (for phorums):
    [url=http://www.iadvice.info/article/86969/iadvice-Creating-Your-Own-Web-Page-is-Easy--A-Tutorial-Part-2.html]Creating Your Own Web Page is Easy - A Tutorial (Part 2)[/url]

    Related Articles:

    The Art of EBay Selling

    Knowing How to Purchase Office Furniture on eBay is Half the Battle

    Website Traffic, Whom Would You Trust ?

    Bookmark it: del.icio.us digg.com reddit.com netvouz.com google.com yahoo.com technorati.com furl.net bloglines.com socialdust.com ma.gnolia.com newsvine.com slashdot.org simpy.com shadows.com blinklist.com