Minimal Design

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it ...

Easy to use theme’s admin panel

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it ...

Featured posts

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it ...

Hello, I am Amarnath and i give some info about online jobs to all. You can follow my blog and get knowledge about online job Thanks A Lot Plz DO NOT use traffic campaign or other PTC or surf your blog or site or bulk Search Engine Submission. Google will be block your Adsense account Here you can bookmark your site to many bookmarking site. To Bookmark Click Here Submit your site into many Search Engines. Keep Bookmarking Monthly once with corrct keyword.

How to Make Your Own Website Facts

 

  • A web page can be created using only a text editor.
  • Cascading style sheets are the best way to change font style and color.
  • Sans-serif fonts are the easiest to read on monitors.
  • You can use the image tag to change the size of your images.
  • Once your website is created, you will need to upload it to your web host's server

Introduction

How to Make Your Own Website
If you want to make your own website but do not want to spend money on an expensive program, have no clue what HTML and CSS means and don't know the basics of web design, then this page is perfect for you. It will guide you step by step on the basic elements of a web page using only a text editor, a web browser and your computer.


Are you feeling like everyone has their own website except you, and that you have no idea where to start? Well, don't despair. This page will take you through the basics of how to create a website. This page was written to conform as much as possible with HTML 4 Specifications created by the World Wide Web Consortium (W3C).


Since the purpose of this page is to teach you how to make your own website, even if you're not particularly net-savvy, it is going to guide you through the basics of HTML and CSS programing. By the time you're finished with this page, you will master all of the fundamental skills necessary to build your own website from scratch.





Let's Get Started

If you want to make your own website but do not want to spend money on an expensive program, or you have no clue what HTML and CSS mean, and you don't know the basics of web design, then this page is perfect for you. It will guide you step by step on the basic elements of a web page using only a text editor, a web browser and your computer.

First you will need a domain, which you can find at a site like GoDaddy. Then using a a host provider such as Pow Web, they will direct you to an area where you can begin to formulate your web page.


Creating Your Home Page

    * It's time to start creating your home page. For the purposes of this exercise, we will be creating a very bare bones webpage. The HTML for a very basic web page looks like this:

    * <html>
    * <head>
    * <title>Page Title</title>
    * </head>
    * <body>
    * </body>
    * </html>

    * The letters between the <> are called tags. Tags come in pairs that begin with the basic code and end with the basic code preceded by a backslash (/). So what do all these mean?

   1. <html> tells the browser that the page is written in html. Always start and end your page with this tag. The </html> indicates the end of the page.
   2. <head> indicates where the header begins and </head> signals where it ends. Information in this section will not be visible on the page.
   3. <title> is the title of the document that is located at the top of the browser. Again, the </title> is placed at the end of the page. Many beginners forget this tag and the page ends up being titled "untitled." The title of this page is "How to Make Your Own Website - Mahalo".
   4. <body> indicates where the body begins and </body> where it ends. This is where the majority of your information will be put.

    * That's it. That's all you need to have an html page. Of course, what you end up with is a blank page, but the rest is coming. Your home page is the only page that has a predetermined title. For future pages, you can choose your own names for them.


Formatting Text

    * Text is the most important aspect of a web page. Formatting text is relatively simple.

   1. Paragraphs: To create a paragraph, surround the words with p code brackets.
   2. Bold: You can make text bold by surrounding it with <b></b>. A similar tag is <strong>. Strong is used to indicate that text should have a stronger emphasis, which most browsers display as bold.W3C HTML 4.01 Specification: Text1
   3. Italics: You can add italics by surrounding text with <i></i>. A similar tag is the <em>-- </em> --> or emphasis tag. Emphasis is generally displayed as italics.W3C HTML 4.01 Specification: Text1
   4. Breaks: The <p> tag will automatically create breaks in between paragraphs, to create line breaks elsewhere, you can use the <br> tag. This tag is different because it stands alone and does not require a closing tag such as </br>

    * You may see other tutorials talk about fancy tags such as tt, strike or small. These tags have been deprecated in favor of style sheets, which is covered in the next section.

Headings

    * Header tags are a great way of breaking up text on a page. They come in six predefined sizes with <h1> being the largest and <h6> being the smallest. An extra blank line is automatically added before and after a heading.W3 Schools: Basic HTML Tags2 Again, you need both an opening (<h1>) and a closing (</h1>) tag.


Character Entities

    * Computers come with all sorts of neat characters that are not easily understood by web browsers. They require character entity references. For example, if you want to display the & sign you need to type in &#38; or it may not show up correctly. Some of the more common characters you will need to know include:


Adding a Cascading Style Sheet

    * Changing the alignment, color, style and other features in your web page is done though cascading style sheets. These can be embedded or linked. For the purposes of this page, we are going to create an embedded style sheet.
         1. Start by going up to the top of your html document.
         2. After the </title> tag but before the </head> tag add in the following information:
                o <style type="text/css">
                o </style>

    * Every style change made on the web page will be inserted between those two tags.W3C: Dave Raggett's Introduction to CSS3 Here is how you add style:
         1. On a new line, in between the two style tags, type in the tag you want to change. For the purposes of this exercise we will be working with the h1 tag.
         2. Then type a space followed by {
         3. Type in the style code followed by }

    * So, let's say you wanted to change header 1 to make it centered. This is what you would type h1 {text-align: center} between the style tags. The entire code should look like this:
          o <style type="text/css">
          o h1 {text-align: center}
          o </style>


Making Temporary Style Changes

    * Now that you understand the basics of style sheets, lets take it one step further. Let's pretend you want to have one paragraph on your web page centered, but the rest of your paragraphs aligned left. This is done by adding classes. You can choose your own names for classes.

    * To add a class to a style sheet:
         1. Add a period (.) after the tag.
         2. Type in a name.
         3. For example, you could type p.middle {text-align: center}
    * You also need to make a minor adjustment to the body of your document when you want to use that class. Instead of simply typing <p> you type <p class="middle">.


Popular Style Changes

    * Here are some of the more common changes you may want to make. Color and font changes are discussed in the next sections. Examples are marked in olive. To review the basic format is Tag.class {attribute: value}
   
    * <td align="left" valign="top">
    * Align text center:
    * Align text right:
    * Align text left:
    * Bold:
    * Normal font:
    * Italic:
    * Underline:
    * Strike through:
    * </td>
    * <td align="left" valign="top" width="210px">
    * text-align: center
    * text-align: right
    * text-align: left
    * font-weight: bold
    * font-weight: normal
    * font-style: italic
    * text-decoration: underline
    * text-decoration: line-through
    * </td>
    * <td align="left" valign="top" width="260px">
    * h1 {text-align: center}
    * p.right {text-align: right}
    * p {text-align: left}
    * h2 {font-weight: bold}
    * p {font-weight: normal}
    * h3 {font-style: italic}
    * h4 {text-decoration: underline}
    * p.cross {text-decoration: line-through}
    * </td>
    * </tr>
    * </table>


More Information about Cascading Style Sheets

    * For more information about Cascading Style Sheets availability, check out any of the following sites:
        
  1. W3 Schools: CSS Tutorial
  2. W3C: Dave Raggett's Introduction to CSS
  3. W3C: Cascading Style Sheets
  4. Sitepoint: An Introduction to Cascading Style Sheets (CSS)
  5. EchoEcho.com: CSS Tutorial

Changing Fonts

    * Changing fonts and font size is not more difficult than other style changes, but it can be trickier. It is trickier because the changes will affect the readability of your website. Using a fancy font may be pretty, but can also make your site unreadable to visitors. The same goes for making fonts smaller and fixing font sizes.useit.com: Let Users Control Font Size4

    * When changing the font size, it is best you set it in terms of percent rather than points, which creates a fixed font size.W3C: Dave Raggett's Introduction to CSS3 Percentage allows visitors to increase or decrease the fonts on your site if necessary. Here are a couple of examples on how you can do this:

  * Double font size:               * font-size: 200%    * h1 {font-size: 200%}
  * Reduce font size in half:     * font-size: 50%      * p.small {font-size: 50%}
  * Normal font size:               * font-size: 100%    * p {font-size: 100%}


      You can also change the fonts used on your website. You will find that most sites (like Mahalo) use sans-serif fonts, which have no lines at the end of the characters, because sans-serif fonts are easier to read on monitors. Interestingly, the opposite is true when it comes to printed material. However, fonts will only work if your viewer has the fonts installed on their computer.BCE 61 Resources: Font for Web Pages5 Luckily, CSS allows you to list a variety of fonts for a given tag or a generic font family.W3 Schools: CSS font-family Property6 That way, if the user does not have your first choice of font, it will use a similar font.

    * Here are the five generic fonts and the most commonly used examples of these fonts:
         1. Serif: Times New Roman, Book Antiqua, Garamond, Palatino Linotype and Georgia.Code Style: Serif Font Sampler and Survey Results
         2. Sans-serif: Arial, Century Gothic, Tahoma, Helvetica and Verdana.Code Style: Sans Serif Font Sampler and Survey Results
         3. Monospace: Courier, Lucida Console and Monaco.Code Style: Monospace Font Sampler and Survey Results
         4. Cursive: Comic Sans MS, Monotype Corsiva and Apple Chancery.Code Style: Cursive Font Sampler and Survey Results
         5. Fantasy: Impact, Haettenschweiler, Marker Felt, Copperplate and Papyrus.Code Style: Fantasy Font Sampler and Survey Results

    * To change fonts on your site you use the "font-family" and then list the fonts in order of preference. Each font is separated by a comma and fonts that have more than one word must be placed in quotes.W3 Schools: CSS font-family Property6 A couple of examples on how you would do this:
          o p {font-family: arial, "lucida console", sans-serif}
          o h1 {font-size: "times new roman", georgia, serif}


More Information on Fonts

    * For more information about fonts and font availability, check out any of the following sites:
     
  1. Hobo: What Is The Best Font Size To Use In Website Design?
  2. Alledia: Why Should You Choose a Website Font Carefully? (May 24, 2007)
  3. Webspace Works: Fonts for Web Design: Further Comparison of Cross-platform Dependability
  4. Web Design Tips & Tricks: Common Fonts to All Versions of Windows & Mac Equivalents
  5. Microsoft: Recommended Fonts

Changing Color

 



      • White #FFFFFF
      • Black #000000
      • Silver #C0C0C0
      • Gray #808080
      • Maroon #800000
      • Red #FF0000
      • Purple #800080
      • Fuchsia #FF00FF
      • Green #008000
      • Lime #00FF00
      • Olive #808000
      • Yellow #FFFF00
      • Navy #000080
      • Blue #0000FF
      • Teal #008080
      • Aqua #00FFFF
         
      • Note: White was not displayed in its color because it would not have appeared against the background. 

        • Again, color is changed using a style sheet. Some examples are listed below. The attribute and value includes everything that is not bold.

          • Make background black: background-color: black
          • Make background green: background-color: #008000
          • Make the text red: color: #FF0000
          • Make the text navy: color: Navy
        • To change the background of an entire page, you simply insert the attribute and value into the style sheet with body as the tag. If you want to change text inside of another element (such as paragraph) you can use span as the tag. Here is an example of how these can be used.

        Creating Links

        • There are two types of links you need to know how to create: internal and external. Internal links are links parts of your page. External links are links to pages on other sites or pages on your site.
        • An external link has three parts:
          1. Opening tag (which includes a web address)
          2. Link text (the words you want the browser to show)
          3. Closing tag
        • It looks like this <a href="http://popstarlavanya.blogspot.com">Pop star lavanya - Free Online Jobs</a> but would show up looking like this: Pop star lavanya - Free Online Jobs
        • If you are linking to a page in your own site (which you'll want to do as you expand your website), you are not required to (but can) use the entire web address. For example, if I wanted to link to a page on this site named webpage.html all I would need to type is:
          • <a href="webpage.html">Web Page</a>.
        • If the file is located in a parent folder or directory, you need to add "../" in front of it.W3C: Getting started with HTML    For example:
          • <a href="../webpage.html">Web Page</a>.
        • If the file is located in a subdirectory, you need to add "/" in front of it.W3C: Getting started with HTML - For example:
          • <a href="/webpage.html">Web Page</a>.
        If you want to display an image instead of text for a link (for example, the Mahalo logo in the upper left is a link to Mahalo's home page, you replace the link text with an image tag. For example: <a href="http://www.popstarlavanya.blogspot.com"><img src="lavanya.gif" alt="Mahalo's Home Page"></a>

        Changing Link Style


        4 Responses so far.

        1. James says:

          Nice creation! it is very good looking blog and it has also nice information.thanks for sharing.
          B2B Portal Development Company

        2. Unknown says:



          Do your accounting homework, accounting assignments with our accounting helps you to do your accounting homework and accounting assignments email me homework solution and accounting tutoring help. Our homework assistance on prashant8778@yahoo.co.in





          Accounting tutoring help

          Accounting homework solution

          Accounting homework

          Accounting assignments










        3. scoot says:

          THANK YOU FOR THE INFORMATION
          PLEASE VISIT US
          customized erp solutions in india


        4. Excellent blog post! I learned a lot! We also share the same service of website development, and we are professionals in it. If you are looking for a professional website developer, then please visit our website.
          https://www.bizdigital.biz/

        Leave a Reply