|
diddy4 (m)
|
here is my code.
<html> <title>designing a webpage</title> <body bgcolor=blue> <body> <h3 align=center>WELCOME TO MA WORLD</h3> <img src=buddies.jpg> </body> </html>
someone help me oooooooooo
|
|
|
|
|
|
my2cents (m)
|
diddy:
chances are that you aren't referencing your image correctly. So where is your image? if it is in, say, images folder, then u hv to reference it thus: images/buddy.jpg.
If this is the case, try the above and c if it works
|
|
|
|
|
|
xanadu
|
Hello all,
A good job done by ncpat and all those who have contributed to this series of tutorials in basic HTML. With all the 'advanced' coding stuff on nairaland, I believe that there are many people who simply want to learn basic html, and then move on from there.
I would like to add my 'two cents' worth as well. I think, though, that it may be a good idea for each person to take a specific area and deal with it. What do you guys think?
To start off, I could contribute a series on creating simple html forms - which could be used on contact us pages, etc, or used simply to collect data from visitors to your website. How does that sound?
I'll just wait to see some feedbacks, then proceed with the first in the series of tutorials on form-building.
Cheers.
|
|
|
|
|
|
MissEniola (f)
|
here is my code.
<html> <title>designing a webpage</title> <body bgcolor=blue> <body> <h3 align=center>WELCOME TO MA WORLD</h3> <img src=buddies.jpg> </body> </html>
someone help me oooooooooo
check if: -your buddies.jpg pic is an actual .jpg pic, it could be a .gif or .png pic. in the folder where it is, does it say buddies.jpg -change your code, add quotes, ie <img src="buddies.jpg"> -make sure the image and htm file are in the same folder -reach out and give your pangolo pc a serious whooozing if none of that works, we have failed as tutors  come and whoze us backhand slap 
|
|
|
|
|
|
diddy4 (m)
|
@misseniola thanks for that, i will try it and see how its gon work. just incase, u might start getting ready for whoozing.  thanks ma'am. 
|
|
|
|
|
|
Jachoz (m)
|
I love this thread. I got everything right 
|
|
|
|
|
|
xanadu
|
Well, I'll go ahead and talk a bit about HTML Forms. I hope this tutorial helps someone out there. HTML FORMS Overview:HTML forms are used in many cases to select and collect different kinds of user input. This input can then be sent to a processor (could be Perl, PHP etc page - don't worry, we'' talk about this in a later tutorial) that will process the data and carry out specific instructions (e.g send an email, access a database etc). HTML forms vary in complexity, depending on the use one requires of them. I'll start from very basic forms and we'll work our way up. I have discovered that one of the best ways to learn forms, from a beginners point of view, is to actually learn from how others have done it - especially when you view the source on web pages that have forms. By looking first at the end result of some html coding, and then studying the actual code, you are able to understand how it all fits together much quicker. You can view the source of most (html) web pages in Internet Explorer, for example, when you do the following: from the menu, click on 'View', then 'Source'. Module One - Building a basic formLets start by studying the basic form below. It is a simple form that is designed to accept a user's name as input. Here's the html code for the above form: <form name ="myform" method="post" action="post_form.php"> Please enter your name<input type="text" name="name"> <br><br> <input type="submit" value="Send"> Now, taking a close look at the code we can study what part of the code does what: Let's take the first line, <form name ="myform" method="post" action="post_form.php">. This line opens the form tag <form>. To create the form, we state the name of the form ("myform"), the method we want to use to process the form ( do not worry about this yet, we come to this later on in the tutorial). Here, we specify the "post" method - basically we are telling the script to send the user's input to some other file, which is specified in ' action="post_form.php"', in this case a php file called "post_form.php". Again, do not bother yourself about the php file yet - we will come to that in a later tutorial. The line <input type="text" name="name"> creates the text box where the user enters in their name. With most browsers, the size of this box is limited to 20, but this can be increased. This is the same line, but with input box size increased to 40: <input type="text" name="name" size="40">. Note that the box size does not necessarily limit the amount of characters one can type into it - what it means is that if, for instance you enter a name that is longer than 20 characters all of that name will not show when it it typed into the box. The html tag <br> is a line break, and by entering that twice, we can skip two lines. Another way we can achieve the same result is if we use the paragraph (<p>) tag. This helps us arrange our form on the page a bit more neatly. Finally, the line <input type="submit" value="Send"> creates a submit button for us. We can specify the text we want on this button where we have "value=", for instance if we wanted the text on the button to read "Submit My Name", the line would read <input type="submit" value=" Submit My Name">. When the user clicks on the submit button, the data input is sent to the file specified in the first line (<form name ="myform" method="post" action="post_form.php">), in this case post_form.php, which will have instructions to process the data. Try the above html and play with some variations. You can create more input fields by replicating the second line, and prompting for some other information, e.g: 'Enter your height<input type="text" name="height"'>. Note that the name of each field or input (in our examples so far, "name" and "height") MUST be unique for each field. So we have created a basic html form that can accept user input. Before we go on to learn what happens to this input, it may be wise to learn about various kinds of form elements. In the next module, we'll learn about various types of form elements. You have probably seen forms that use checkboxes, radio buttons, drop-down, textarea etc. We'll take a look at these in the next tutorial Next Module: Form Elements
|
|
|
|
|
|
Zahymaka (m)
|
xanadu, abeg calm down. This one is for beginners like us -- we haven't moved to forms yet. Let's grasp the basics.
|
|
|
|
|
|
ncpat (m)
|
I think I have to leave this thread for XANADU to continue b`because i don`t normally have time to post and you people should tell him to calm down a little bit.
|
|
|
|
|
|
pholusho (m)
|
Good day, i want to say thank you very much for the discussion, and when are you likely to continue.
|
|
|
|
|
|
|
|
xanadu
|
Guys, I think I need to apologise first to ncpat who from the sound of it seems quite upset, and more than likely believes I intentionally planned to 'seize' this post. Nothing can be further from the truth. On July 22nd, I posted this: Hello all,
A good job done by ncpat and all those who have contributed to this series of tutorials in basic HTML. With all the 'advanced' coding stuff on nairaland, I believe that there are many people who simply want to learn basic html, and then move on from there.
I would like to add my 'two cents' worth as well. I think, though, that it may be a good idea for each person to take a specific area and deal with it. What do you guys think?
To start off, I could contribute a series on creating simple html forms - which could be used on contact us pages, etc, or used simply to collect data from visitors to your website. How does that sound?
I'll just wait to see some feedbacks, then proceed with the first in the series of tutorials on form-building.
Cheers. There was no reply, nothing saying no one was interested etc, so on July 28th, I started the first tutorial on forms. I thought I was being polite by waiting for a while before going ahead. So for now, we shall suspend any tutorial on forms from myself. Or I'll simply start a new thread as tpia rightly suggested. I want all the great members out there to understand that I was truly trying to make a contribution of some sorts to the forum. I have been a member of this forum for a while, and I know there are a lot of people out there who are interested in web programming or design. Again, my apologies to ncpat and all others; and tpia, I certainly did not do that on purpose. Stay well, all.
|
|
|
|
|
|
thirdeye (m)
|
great job just continue, Well, I'll go ahead and talk a bit about HTML Forms. I hope this tutorial helps someone out there. HTML FORMS Overview:HTML forms are used in many cases to select and collect different kinds of user input. This input can then be sent to a processor (could be Perl, PHP etc page - don't worry, we'' talk about this in a later tutorial) that will process the data and carry out specific instructions (e.g send an email, access a database etc). HTML forms vary in complexity, depending on the use one requires of them. I'll start from very basic forms and we'll work our way up. I have discovered that one of the best ways to learn forms, from a beginners point of view, is to actually learn from how others have done it - especially when you view the source on web pages that have forms. By looking first at the end result of some html coding, and then studying the actual code, you are able to understand how it all fits together much quicker. You can view the source of most (html) web pages in Internet Explorer, for example, when you do the following: from the menu, click on 'View', then 'Source'. Module One - Building a basic formLets start by studying the basic form below. It is a simple form that is designed to accept a user's name as input. Here's the html code for the above form: Now, taking a close look at the code we can study what part of the code does what: Let's take the first line, <form name ="myform" method="post" action="post_form.php">. This line opens the form tag <form>. To create the form, we state the name of the form ("myform"), the method we want to use to process the form ( do not worry about this yet, we come to this later on in the tutorial). Here, we specify the "post" method - basically we are telling the script to send the user's input to some other file, which is specified in ' action="post_form.php"', in this case a php file called "post_form.php". Again, do not bother yourself about the php file yet - we will come to that in a later tutorial. The line <input type="text" name="name"> creates the text box where the user enters in their name. With most browsers, the size of this box is limited to 20, but this can be increased. This is the same line, but with input box size increased to 40: <input type="text" name="name" size="40">. Note that the box size does not necessarily limit the amount of characters one can type into it - what it means is that if, for instance you enter a name that is longer than 20 characters all of that name will not show when it it typed into the box. The html tag <br> is a line break, and by entering that twice, we can skip two lines. Another way we can achieve the same result is if we use the paragraph (<p>) tag. This helps us arrange our form on the page a bit more neatly. Finally, the line <input type="submit" value="Send"> creates a submit button for us. We can specify the text we want on this button where we have "value=", for instance if we wanted the text on the button to read "Submit My Name", the line would read <input type="submit" value=" Submit My Name">. When the user clicks on the submit button, the data input is sent to the file specified in the first line (<form name ="myform" method="post" action="post_form.php">), in this case post_form.php, which will have instructions to process the data. Try the above html and play with some variations. You can create more input fields by replicating the second line, and prompting for some other information, e.g: 'Enter your height<input type="text" name="height"'>. Note that the name of each field or input (in our examples so far, "name" and "height") MUST be unique for each field. So we have created a basic html form that can accept user input. Before we go on to learn what happens to this input, it may be wise to learn about various kinds of form elements. In the next module, we'll learn about various types of form elements. You have probably seen forms that use checkboxes, radio buttons, drop-down, textarea etc. We'll take a look at these in the next tutorial Next Module: Form ElementsGreat job just continue with it I have been searching for this.THANK YOU FOR SHAIRING YOUR EXPERIENCE. It is a forum, you don't need to start any other thread. Continue with this.
|
|
|
|
|
|
Zahymaka (m)
|
Obviously, xanadu wants to teach us PHP and how to handle external variables that come in from the client. Forms are in that league and since this is a thread for beginners, it would be quite confusing to introduce forms at this stage.
Let us understand the basic HTML syntax first before we move up to that level.
|
|
|
|
|
|
LoverBwoy (m)
|
hey people ncpat, ive finish i got everything right oh, i can't believe im dong this, i will have my website/page online very soon if the tutorial continue!! thank you ncpat
Does anyone else what to continiue with the basic or thats the end of basics, intermediate?
@xanadu are u starting a new thread or is that part of the basics?
|
|
|
|
|
|
aderaskeey (m)
|
ncpat and xanadu, there is no reason for being cross with each other. Both of you have done a great job for our newbies. Instead of either putting the newbies in suspense, let me intervene by way of sugesting sites that I always use to teach my 'students' in the school of web design and adsense. Just go to Virtually Ignorant http://www.virtuallyignorant.com/index2.htm the animated teaching aides are simple to understand.
|
|
|
|
|
|
deb (m)
|
I'm not here to take over this thread from either ncpat or xanadu. The excitment from you the beginners just reminded me of when I started coding. I love to get you more excited by teaching you how to spark up your page with a little animation. What I'm going to teach you now is called Marquee Animation. Add the below code anyway within your <body> tag: <marquee>My First Animation</marquee> You should have My First Animation moving from right to the left of your screen  Like I said I'm not here to take over the thread. So I may not be posting more. Except its demand
|
|
|
|
|
|
Remmzy (m)
|
ncpat (m) abuja,Nigeria Re: Designing A Website: For Beginners « #40 on: July 31, 2006, 08:40 AM » I think I have to leave this thread for XANADU to continue b`because i don`t normally have time to post and you people should tell him to calm down a little bit. You guys should not turn those learning from you to fools, why start something you know you can't finish, Control your temperance{n} & don't put a stop to this good work{x}, we beg you We are waiting!
|
|
|
|
|
|
md4real (m)
|
PLEASE LET SOMEBODY CONTINUE THIS TOTUTORIAL. IT ASERVICE TO YOUR NATION!
|
|
|
|
|
|
my2cents (m)
|
Service to your nation? LOL What's next? Sending money via western union? 
|
|
|
|
|
|
LoverBwoy (m)
|
ncpat didnt say anything about being angry @ xanudu, he said he doesnt have time that much I think I have to leave this thread for XANADU to continue b`because i don`t normally have time to post and you people should tell him to calm down a little bit.
|
|
|
|
|
|
Remmzy (m)
|
wonder! 
|
|
|
|
|
|
pati (f)
|
ncpat, thankx man
|
|
|
|
|
|
kg (f)
|
Good job everyone, I've always been an advocate of design your site yourself, it's possible and not difficult afterall. Besides you don't need to know how to write codes in order to design your site, with a little guide and support you'll be amazed at what you can do. However knowing how to write the codes will forever give you an advantage and a better understanding. I learnt how to write codes first before learning to use the WYSIWYG, drag and drop types, In addition to the informations you've gotten on this forum You can learn how to design your own website hear http://www.nvu.comHowever, if you are interested in discovering further web designing tips and secret of how to design traffic generating and money making websites feel free to send an email to net365net@yahoo.com or call 08033792673 I'll be glad to help.
|
|
|
|
|
|
jamesod (m)
|
Hello ncpat. I love your tutorial, checkout my website, www.logicfusion.8m.com why is the display like that? I know HTML way back but this trash is what I always get. I used dreamweaver mx for this shit!
|
|
|
|
|
|
wilmabundu (m)
|
Waoooooh, Hm, Knowledge dey sweet oooooh. I think when one gets to know new things he gets so exhilarated that hunger and thirst take flight.I wish to congratulate evrybody, both the teachers and the students. I pray that we will continue to learn and improve ourselves. I am even planning to statrt teaching my younger brother. You kno what? The secret of perfection lies in practice, and here practice is done by teaching. I look forward to teaching us one day. Meanwhile, kudos to all and sundry Cheerio!
|
|
|
|
|
|
babaijo (m)
|
@ncpat Will this lecture ever continue? I can't wait to learn more. Please let's progress more importantly on how to upload the designed web.
|
|
|
|
|
|
sirify (m)
|
Please does anyone have any idea on how much it would cost to design a website/webpage
|
|
|
|
|
|
ncpat (m)
|
i`m back but i need to rest for a while and know the next level to go,see you all
|
|
|
|
|
|
Bhola (f)
|
Welcome back, teacher. Deb, MissEniola, Xanadu, and all others, you are all appreciated. Make JJC like me, learn something new.
|
|
|
|
|
|
b2dl (f)
|
oh please ncpat, do continue i beg of u! thx a bunch 
|
|
|
|
|
|
molluma (f)
|
ncpat thanks alot. please continue. God bless ya all
|
|
|
|
|
|