Difference between revisions of "Learning web design (1)"

From Wiki @ Karl Jones dot com
Jump to: navigation, search
(HTML elements)
(Web pages)
Line 61: Line 61:
 
See [[HTML tag]].
 
See [[HTML tag]].
  
== Web pages ==
+
== Web page ==
  
...
+
A [[web page]] is an [[HTML]] document (or similar document) displayed in a [[web browser]].
  
 
See [[Web page]].
 
See [[Web page]].

Revision as of 12:23, 25 April 2016

This article introduces web design for the beginner.

What is web design?

Web design is the art and craft of making web pages.

See Web design.

Web pages

The fundamental purpose of a web page is to display text.

See Web page.

Text

Text is written language. Working with text is a primary task web design.

In this content, "text" sometimes means "text content", in order to distinguish this text from other text, such as markup languages.

See Text.

Text files

Text is commonly stored in text files.

Text files often have the .txt file extension, although many other file extensions also represent text files, while some text files have no file extension.

See Text file.

Text editors

A text editor is a computer program which allows the user to edit text files.

See Text editor.

Markup languages

A markup language is a writing system which adds meaning to text content.

See Markup language.

HTML

HTML is a well-known markup language, widely used on the World Wide Web.

See HTML and HTML5.

HTML elements

HTML elements are the vocabulary of the HTML.

Learning HTML meaning learning the important HTML elements, and how to use them.

See HTML element.

HTML tags

HTML tags ...

See HTML tag.

Web page

A web page is an HTML document (or similar document) displayed in a web browser.

See Web page.

Simple web page

...

Block elements

...


Inline elements

...

Classic HTML elements

...

html

...

head

...

title

...

body

...

h1, h2, h3, h4, h5, h6

...

p

...

a

...

img

...

div

...

span

...

img

...

style

...

link

...

br

...

hr

...

table, th, tr, td

...

script

...

Semantic HTML

Semantic HTML is ...

header

...

article

...

nav

...

Learning web design (2)

See Learning web design (2) for an introduction to Cascading Style Sheets.

See also