Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,148,895 members, 7,802,880 topics. Date: Saturday, 20 April 2024 at 01:17 AM

Nairaland School Of Programming - Programming - Nairaland

Nairaland Forum / Science/Technology / Programming / Nairaland School Of Programming (7337 Views)

Mathematics As Backbone Of Programming / 5nights Of Programming See What I Built / 500GB Worth Of Programming Books Avaliable. (2) (3) (4)

(1) (2) (Reply) (Go Down)

Nairaland School Of Programming by Nobody: 2:36am On Oct 16, 2015
It seems the number of people interested in learning programming is increasing daily.
as lots of people have been trying to learn programming.

I'm willing to teach to the best of my ability, though am also a learner. this thread is open to helpful comments from those better.

Things to expect from me
1. Basic tutorial from me starting with html.
2. links to helpful videos and sites
3. information on some programming schools am aware of
4. information on helpful books and dvd's
5. And some helpful tips in programming.

pls note: Am not much of a writer, I'm just trying to give back to the society. so i would appreciate help from better writers for correction should the need be.

1 Like

Re: Nairaland School Of Programming by youngwarrior(m): 2:37am On Oct 16, 2015
such post usually makes me speechless. no matter how fast i think my brain boot, such post gets it nagging.

2 Likes

Re: Nairaland School Of Programming by nairalandmaster(f): 2:38am On Oct 16, 2015
nice one op. keep it up

1 Like

Re: Nairaland School Of Programming by nairalandmaster(f): 2:39am On Oct 16, 2015
nice one op. keep it up.

1 Like

Re: Nairaland School Of Programming by nairalandmaster(f): 2:40am On Oct 16, 2015
nice post

1 Like

Re: Nairaland School Of Programming by fromnigeria(m): 2:47am On Oct 16, 2015
Following OP

1 Like

Re: Nairaland School Of Programming by Nobody: 3:05am On Oct 16, 2015
i would be starting with what i started with, and what my teacher's also started with.(from what they told me)

HTML
Is it a programing language or not.
really, i don't care. All i know is it is the easiest to start with.


so lets begin.

For every skill you need a tool.

For HTML you need your notepad, notepad++, dreamweavers and such.(if you know more feel free to share)
to get to your notepad simply search for notepad on your system and open it.

now that we've done that.type into your notepad the following,

<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>

<h1>This is a Heading</h1>
<p>This is a paragraph.</p>

</body>
</html>

good.
next i will explain what the code says.

Re: Nairaland School Of Programming by Nobody: 3:29am On Oct 16, 2015
HTML is a markup language for describing web documents (web pages).
<html> this is called a tag. it is a start tag and it tells the browser what kind of document it is.
for every start tag there is an end tag.
</html> this is an end tag.


HTML stands for Hyper Text Markup Language,

HTML documents are described by HTML tags which i just showed you.(Those text in brackets)
looking at the example i gave in my previos post. below is my explanation of the tags.

The DOCTYPE declaration defines the document type to be HTML
The text between <html> and </html> describes an HTML document
The text between <head> and </head> provides information about the document
The text between <title> and </title> provides a title for the document
The text between <body> and </body> describes the visible page content
The text between <h1> and </h1> describes a heading
The text between <p> and </p> describes a paragraph

<tagname>content</tagname>
i hope now you understand what tags mean.
they are very important.

Note: To start programming you have to start programming, i'm saying don't just read, open up your notepad and write out the code.

Re: Nairaland School Of Programming by eyitayooloke(m): 2:09pm On Oct 16, 2015
what of other programmings...e. g linking one page to another, inserting passwords, images, colours, boxes etc
Re: Nairaland School Of Programming by Nobody: 8:47pm On Oct 16, 2015
eyitayooloke:
what of other programmings...e. g linking one page to another, inserting passwords, images, colours, boxes etc

we would get into that as soon as I get home.
Re: Nairaland School Of Programming by Nobody: 6:24pm On Oct 17, 2015
Now lets save what you typed.

Save the file on your computer.

Select File > Save as in the Notepad menu.

Name the file "index.html" or any other name ending with html or htm.

You can use either .htm or .html as file extension. There is no difference, it is up to you.

To open the file in a browser, double click on the file, or right-click, and choose open with.

Re: Nairaland School Of Programming by Nobody: 6:32pm On Oct 17, 2015
HTML documents must start with a type declaration: <!DOCTYPE html>.

The HTML document itself begins with <html> and ends with </html>.

The visible part of the HTML document is between <body> and </body>.

HTML headings are defined with the <h1> to <h6>and end with </h1> tags

HTML paragraphs are defined with the <p> and end with </p> tag

HTML links are defined with the <a> and end with </a> tag
Re: Nairaland School Of Programming by Nobody: 6:43pm On Oct 17, 2015
For those who would love to be ahead, here are some good sites you can learn from

www.w3schools.com/html/default.asp

http://learn.shayhowe.com/html-css/building-your-first-web-page/

https://www.codecademy.com/tracks/web

https://developer.mozilla.org/

pls help with more good sites to learn pramming.

Re: Nairaland School Of Programming by Nobody: 6:49pm On Oct 17, 2015
Re: Nairaland School Of Programming by Nobody: 6:59pm On Oct 17, 2015
For those who don't have a computer but still want to learn it.
.
Get an android phone and download this apps androphp and phprunner .

i practiced with w3schools then. and advanced.
Re: Nairaland School Of Programming by checkmateman: 7:17pm On Oct 17, 2015
Nice one. At least people will get an insight before entering the real deal

1 Like 1 Share

Re: Nairaland School Of Programming by Nobody: 7:35pm On Oct 18, 2015
I hope we've been practicing our coding on HTML.

was going through nairaland and I came across this post

Special Codes To Format Text On Nairaland by Dioxidane

and an idea hit me.

why not practice on nairaland.

This is for those who are not familiar with text editing codes on Nairaland or on any other forum. Sometimes we see guys that comment with red or blue text or comment with a different font. By the time you finish reading this post, you should be able to do same. Now let's begin.
The general one is to make a text Bold, Italicized, Underlined, or Struck-through.
Put b in an enclosed bracket [], write your text, then end with [/b] => bold
Put i in an enclosed bracket [], write your text, then end with [/i] => Italics
Put u in an enclosed bracket [], write your text, then end with [/u] . => Underline
Put s in an enclosed bracket [], write your text, then end with [/s] => Strike-Through
The next is changing the color of a text.
Put color=red in an enclosed bracket [], write your text, then end with [/color]. => Red
Put color=blue in an enclosed bracket [], write your text, then end with [/color]. => Blue
Put color=green in an enclosed bracket [], write your text, then end with [/color].=> Green
Another code involves increasing the size of the text.
Put size=12 in an enclosed bracket [], write your text, then end with [/size].=> Twelve
Another code involves changing the font of the text.
Put font=Courier New in an enclosed bracket [], write your text, and end with [/font]. => Dioxidane
Put font=Times New Roman in an enclosed bracket [], write your text, and end with [/font].=> Dioxidane
Put font=Lucida Console in an enclosed bracket [], write your text, and end with [/font]. => Dioxidane e.t.c

try does codes and we can move to our next class on elements.

Re: Nairaland School Of Programming by Nobody: 7:37pm On Oct 18, 2015
you can ask questions. should you have problems with your output.
Re: Nairaland School Of Programming by Dioxidane: 6:05am On Oct 19, 2015
sossesam:
you can ask questions. should you have problems with your output.

My question is: Erhm, how much is your tutorial fee? grin


Good job bro...

1 Like

Re: Nairaland School Of Programming by Nobody: 1:09pm On Oct 19, 2015
sossesam:
you can ask questions. should you have problems with your output.

how do you create a table with two rows and columns
Re: Nairaland School Of Programming by Nobody: 9:08pm On Oct 21, 2015
basbone:


how do you create a table with two rows and columns

try this code on your notepad

< table>

< tr>

<th > blog </th >

<th > forum </th >

<th > news< /th >

< /tr >

< tr>

<td > bellanaija</td >

<td > nairaland</td >

<td > punch.com< /td >

< /tr >

< /table >

the <table> says this is a table
the < tr> says this is a row
the <td> says this is the data

now create your table the way you want
Re: Nairaland School Of Programming by makavele: 10:04pm On Oct 21, 2015
nice post . . but a few corrections . . .

HTML pages need not start with declaration <!DOCTYPE html>
in fact, if i want to be lazy and unprofessional, i'd not even input <html> and </html>tags\
i can just create a .htm or .html file and start inputting directly . . .
but like i said it is lazy and unprofessional.... and at a stage when u mix ur code with other languages or scripts on tthe same page
u might throw in errors. .

for correction purposes, it should be:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>

</body>
</html>

1 Like

Re: Nairaland School Of Programming by checkmateman: 6:51am On Oct 22, 2015
makavele:
nice post . . but a few corrections . . .

HTML pages need not start with declaration <!DOCTYPE html>
in fact, if i want to be lazy and unprofessional, i'd not even input <html> and </html>tags\
i can just create a .htm or .html file and start inputting directly . . .
but like i said it is lazy and unprofessional.... and at a stage when u mix ur code with other languages or scripts on tthe same page
u might throw in errors. .

for correction purposes, it should be:




Me don't advise the use of html 5 doc declaration as its not really widely supported, I will advise the use of html 4 transitional or xhtml transitional but to be good use strict

1 Like

Re: Nairaland School Of Programming by makavele: 11:53am On Oct 22, 2015
checkmateman:


Me don't advise the use of html 5 doc declaration as its not really widely supported, I will advise the use of html 4 transitional or xhtml transitional but to be good use strict

HTML5 not widely supported, this is 2015 not 1928 . . brother
and what i post up there is standard html opening and closing tags . . . dont let it confuse you . . .
i only included the character coding which could be UTF or ISO if you want
and the language set for non-english developers .. simple

1 Like

Re: Nairaland School Of Programming by checkmateman: 4:34pm On Oct 22, 2015
makavele:


HTML5 not widely supported, this is 2015 not 1928 . . brother
and what i post up there is standard html opening and closing tags . . . dont let it confuse you . . .
i only included the character coding which could be UTF or ISO if you want
and the language set for non-english developers .. simple

Guy cool down I never say anything is wrong with your code, its 2015 but so many people still don't update their browsers and also you can all the big websites and see for urself. Html 5 declaration most useful for developing mobile apps.
Re: Nairaland School Of Programming by Nobody: 6:02pm On Oct 22, 2015
makavele:
nice post . . but a few corrections . . .

HTML pages need not start with declaration <!DOCTYPE html>
in fact, if i want to be lazy and unprofessional, i'd not even input <html> and </html>tags\
i can just create a .htm or .html file and start inputting directly . . .
but like i said it is lazy and unprofessional.... and at a stage when u mix ur code with other languages or scripts on tthe same page
u might throw in errors. .

for correction purposes, it should be:




all true

but my goal was to make the beginning of this post as simple as possible. with tags that could be explained.

but tanx for the upgrade.

appreciate
Re: Nairaland School Of Programming by makavele: 6:08pm On Oct 22, 2015
sossesam:


all true

but my goal was to make the beginning of this post as simple as possible. with tags that could be explained.

but tanx for the upgrade.

appreciate

Anytime brov and if u need me to help out with lessons . . i'd be more than glad. . .

1 Like

Re: Nairaland School Of Programming by cordss(m): 2:11pm On Oct 23, 2015
<b>please this is God sent to me, am a very interested student mr. sussam...</b>

1 Like

Re: Nairaland School Of Programming by cordss(m): 2:13pm On Oct 23, 2015
and my first attempt at it didnt work
Re: Nairaland School Of Programming by Nobody: 7:48am On Oct 24, 2015
please guys i need help.
i just got admitted to study cybersecurity and from what i learnt i will definitly need to know how to run programs.
pls what would be ur advice on how exactly to start,sch is resuming dec bt i will love to learn somethings,atleast basics

(1) (2) (Reply)

Learn How To Design A Website / Who Wants to Start an Electronic Game Development Company? / A True Story And An Advice To All Programmers(expecially Newbies)

(Go Up)

Sections: politics (1) business autos (1) jobs (1) career education (1) romance computers phones travel sports fashion health
religion celebs tv-movies music-radio literature webmasters programming techmarket

Links: (1) (2) (3) (4) (5) (6) (7) (8) (9) (10)

Nairaland - Copyright © 2005 - 2024 Oluwaseun Osewa. All rights reserved. See How To Advertise. 43
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.