Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,191,154 members, 7,943,183 topics. Date: Sunday, 08 September 2024 at 08:13 AM

New Web Design Tutorials On Nairaland!!! - Webmasters - Nairaland

Nairaland Forum / Science/Technology / Webmasters / New Web Design Tutorials On Nairaland!!! (543 Views)

Please How Do I Transfer My Domain Name To A New Web Hosting Company? / Anyone With Links To Download Good Tutorials On SEO For Digital Marketing. / Learn And Get Tutorials On Web Development/programming (2) (3) (4)

(1) (Reply) (Go Down)

New Web Design Tutorials On Nairaland!!! by Jiddex(m): 5:19am On Aug 23, 2017
About My Tutors:


This tutorial is designed for the aspiring Web Designers, Developers Beginners with a need to
understand the HTML in enough detail along with its simple overview, and practical
examples. This tutorial will give you enough ingredients to start with HTML from where
you can take yourself at higher level of expertise. what you have to do is sit back, visit
this thread, read post, ask question(if you are confused), and contribute to the tutorials. wink


ABOUT HTML::
HTML stands for (Hyper Text Markup Language), which is the most widely used language on
web to develop web pages.
HTML was created by Berners-Lee in late 1991 but "HTML 2.0" was the first standard HTML
specification which was published in 1995. HTML 4.01 was a major version of HTML and it
was published in late 1999. Though HTML 4.01 version is widely used but currently we are
having HTML-5 version which is an extension to HTML 4.01, and this version was published
in 2012.


TOPIC 1 : INTRODUCTION
Session: 1
What is HTML?

HTML is a markup language for describing web documents (web pages).
HTML stands for Hyper Text Markup Language
A markup language is a set of Markup tags
HTML documents are described by HTML tags
Each HTML tag describes different document content

HTML EXAMPLE:
A small HTML document:
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>

Example Explained:[/b]

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

Using this description, a web browser can display a document with a heading and a paragraph.

[i]HTML Tags:


HTML tags are keywords (tag names) surrounded by angle brackets:

<tagname>content</tagname>
HTML tags normally come in pairs like <p> and </p>
The first tag in a pair is the start tag, the second tag is the end tag
The end tag is written like the start tag, but with a slash before the tag name

>>> The start tag is often called the opening tag. The end tag is often called the closing tag.

WEB BROWSERS:

The purpose of a web browser (Chrome, IE, Firefox, Safari) is to read HTML documents and display them.
>>> Only the <body> area </body> is displayed by the browser.


The <!DOCTYPE> Declaration:

The <!DOCTYPE> declaration helps the browser to display a web page correctly.
There are different document types on the web.
To display a document correctly, the browser must know both type and version.
The doctype declaration is not case sensitive. All cases are acceptable:

<!DOCTYPE html>
<!DOCTYPE HTML>
<!doctype html>
<!Doctype Html>

Common Declarations:
HTML5
<!DOCTYPE html>
HTML 4.01
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
XHTML 1.0
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

>>> All tutorials and examples at this tutorial use HTML5.

HTML Versions!!!
Since the early days of the web, there have been many versions of HTML:

Version Year
HTML 1991
HTML 2.0 1995
HTML 3.2 1997
HTML 4.01 1999
XHTML 2000
HTML5 2014

1 Like

Re: New Web Design Tutorials On Nairaland!!! by Jiddex(m): 5:28am On Aug 23, 2017
Jiddex:
About My Tutors:


TOPIC 1 : INTRODUCTION
Session: 1
What is HTML?

HTML is a markup language for describing web documents (web pages).
HTML stands for Hyper Text Markup Language
A markup language is a set of Markup tags
HTML documents are described by HTML tags
Each HTML tag describes different document content

HTML EXAMPLE:
A small HTML document:
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>

Example Explained:

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



1 Like

Re: New Web Design Tutorials On Nairaland!!! by Nobody: 5:34am On Aug 23, 2017
grin grin grin grin

This is nice Op...keep it up.

2 Likes

Re: New Web Design Tutorials On Nairaland!!! by Jiddex(m): 5:58am On Aug 23, 2017
Session 2 : HTML Editors:

>>> Write HTML Using Notepad or TextEdit

.HTML can be edited by using professional HTML editors like:
.Microsoft WebMatrix
.Sublime Text

However, for learning HTML we recommend a text editor like Notepad (PC) or TextEdit (Mac).
We believe using a simple text editor is a good way to learn HTML.
Follow the 4 steps below to create your first web page with Notepad.

Step 1: Open Notepad
To open Notepad in Windows 7 or earlier:
Click Start (bottom left on your screen). Click All Programs. Click Accessories. Click Notepad.
To open Notepad in Windows 8 or later:
Open the Start Screen (the window symbol at the bottom left on your screen). Type Notepad.

Step 2: Write Some HTML
Write or copy some HTML into Notepad. :
<!DOCTYPE html>
<html>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>

Step 3: Save the HTML Page
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.
UTF-8 is the preferred encoding for HTML files.
ANSI encoding covers US and Western European characters only.

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

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

1 Like

Re: New Web Design Tutorials On Nairaland!!! by Nobody: 11:26pm On Aug 23, 2017
Interesting keep it up

1 Like

Re: New Web Design Tutorials On Nairaland!!! by Jiddex(m): 11:35pm On Aug 23, 2017
BroZuma:
grin grin grin grin

This is nice Op...keep it up.

1 Like

Re: New Web Design Tutorials On Nairaland!!! by Jiddex(m): 11:35pm On Aug 23, 2017
Thanks

1 Like

Re: New Web Design Tutorials On Nairaland!!! by EXICON(m): 3:13pm On Aug 24, 2017
Nice one OP,

Keep it up. At least, this will serve as a good ground of encouraging for budding web developers.

I commend you greatly on this and you have my backing.
Regards.

Jiddex:
About My Tutors:


This tutorial is designed for the aspiring Web Designers, Developers Beginners with a need to
understand the HTML in enough detail along with its simple overview, and practical
examples. This tutorial will give you enough ingredients to start with HTML from where
you can take yourself at higher level of expertise. what you have to do is sit back, visit
this thread, read post, ask question(if you are confused), and contribute to the tutorials. wink


ABOUT HTML::
HTML stands for (Hyper Text Markup Language), which is the most widely used language on
web to develop web pages.
HTML was created by Berners-Lee in late 1991 but "HTML 2.0" was the first standard HTML
specification which was published in 1995. HTML 4.01 was a major version of HTML and it
was published in late 1999. Though HTML 4.01 version is widely used but currently we are
having HTML-5 version which is an extension to HTML 4.01, and this version was published
in 2012.


TOPIC 1 : INTRODUCTION
Session: 1
What is HTML?

HTML is a markup language for describing web documents (web pages).
HTML stands for Hyper Text Markup Language
A markup language is a set of Markup tags
HTML documents are described by HTML tags
Each HTML tag describes different document content

HTML EXAMPLE:
A small HTML document:
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>

Example Explained:[/b]

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

Using this description, a web browser can display a document with a heading and a paragraph.

[i]HTML Tags:


HTML tags are keywords (tag names) surrounded by angle brackets:

<tagname>content</tagname>
HTML tags normally come in pairs like <p> and </p>
The first tag in a pair is the start tag, the second tag is the end tag
The end tag is written like the start tag, but with a slash before the tag name

>>> The start tag is often called the opening tag. The end tag is often called the closing tag.

WEB BROWSERS:

The purpose of a web browser (Chrome, IE, Firefox, Safari) is to read HTML documents and display them.
>>> Only the <body> area </body> is displayed by the browser.


The <!DOCTYPE> Declaration:

The <!DOCTYPE> declaration helps the browser to display a web page correctly.
There are different document types on the web.
To display a document correctly, the browser must know both type and version.
The doctype declaration is not case sensitive. All cases are acceptable:

<!DOCTYPE html>
<!DOCTYPE HTML>
<!doctype html>
<!Doctype Html>

Common Declarations:
HTML5
<!DOCTYPE html>
HTML 4.01
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
XHTML 1.0
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

>>> All tutorials and examples at this tutorial use HTML5.

HTML Versions!!!
Since the early days of the web, there have been many versions of HTML:

Version Year
HTML 1991
HTML 2.0 1995
HTML 3.2 1997
HTML 4.01 1999
XHTML 2000
HTML5 2014

2 Likes

(1) (Reply)

For Sale: Source Code For Football Livescore App / Lindaikejisblog.com Seems To Be Down / Fully Verified USA Google Adsense Account For Sale

(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. 40
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.