Question:

Can someone help me develop me a website?

by  |  earlier

0 LIKES UnLike

Basically i created a sub-domain .... justuts.6te.net with ALL MY IDEAS. I really need someone to help me out, Basically what we're offereing is a percentage of ANY MONEY that is made, from this site, PLEASE HELP! WE'RE SOO SOOO DESPERATE!!!

10 POINTS FOR BEST ANSWER!!

 Tags:

   Report

2 ANSWERS


  1. Refer this site.

    www.w3schools.com.

    It will help u for developing a website


  2. HTML TEMPLATE FOR BEGINNERS

    you will need a Commercial web host. freebies won't allow a business set up. so google for that but here are some sample html codes you can play with to get started.here are some SIMPLE/SAMPLE html codes:

    always start with:

    <html>

    enter the name of your webpage/site between the HTML TITLE codes

    <head><title>TITLE OF PAGE HERE</title></head>

    next you'll need a back ground that can be either a straight color or an image.

    color background:

    colors can be expressed by using either the name of a color or color code.here I am using color names as that's the easiest to use for beginners

    <body bgcolor="COLOR NAME HERE">

    so far,we have the following beginning HTML code:

    <html><head><title>TILE HERE</title></head><body bgcolor="NAME OF COLOR HERE">

    were we to use an image,it'd look like this

    <html><head><title>TILE HERE</title></head><body background=img src="URL OF IMAGE HERE">

    images used as backgrounds have to be an image that comes from your image hosting site. that is,you have to upload an image to an image web host and use their web url as your background image

    font or text size:

    <font size="1 (small) to 7(LARGE)">

    font SIZE & FONT COLOR

    <font size="5"color="COLOR NAME HERE">

    center text:

    <center>

    so far we have:

    <html><head><title>TILE HERE</title></head><body bgcolor="NAME OF COLOR HERE"><font size="5"><center>

    OR

    <html><head><title>TILE HERE</title></head><body bgcolor="NAME OF COLOR HERE"><font size="5"color="NAME OF COLOR"><center>

    show image and again,we use an image from your image hosting site

    Show Image:

    <img src="IMAGE URL HERE">

    Aligning Image/s:

    align image:

    <img src="IMAGE URL HERE"align="left">

    <img src="IMAGE URL HERE"align="center">

    <img src="IMAGE URL HERE"align="right">

    Space or separate text

    single space:

    <p>

    paragraph:

    <br>

    text link:

    <a href="WEBSITE URL HERE">NAME OF WEBSITE HERE</a>

    image link:

    <a href="WEBSITE LINK HERE"><img src="URL OF IMAGE HERE"></a>

    End or closing HTML Codes:

    MOST [ but not all,like <p> or <br> or <img src> ] need to have a "closing" HTML code "string"

    Close HTML:

    </html>

    Close Background:

    </body>

    Close Font:

    </font>

    Close Text and image links:

    unlike HTML or Background [ codes ] text and image links place the closing HTML codes at the immediate end of that command code or HTML "string"

    Link close code:

    </a>

    example:

    <a href="WEBSITE URL HERE">NAME OF WEBSITE HERE</a>

    use your Notepad to create a temporary web page by clicking save as

    title your temp page like

    html_practice dot html [ Y.A! won't allow more than 10 links anymore so that's why i wrote out the dot html ]

    this way,all links are clickable

    please don't forget to choose Best Answer

    this answer has been selected as Best Answer 13 times

Question Stats

Latest activity: earlier.
This question has 2 answers.

BECOME A GUIDE

Share your knowledge and help people by answering questions.