slovodefinícia
hypertext
(encz)
hypertext,hypertext n: Zdeněk Brož
hypertext
(czen)
hypertext,hypertextn: Zdeněk Brož
hypertext
(wn)
hypertext
n 1: machine-readable text that is not sequential but is
organized so that related items of information are
connected; "Let me introduce the word hypertext to mean a
body of written or pictorial material interconnected in
such a complex way that it could not conveniently be
presented or represented on paper"--Ted Nelson
hypertext
(foldoc)
hypertext
hypermedia

A term coined by Ted Nelson around 1965 for a
collection of documents (or "nodes") containing
cross-references or "links" which, with the aid of an
interactive browser program, allow the reader to move easily
from one document to another.

The extension of hypertext to include other media - sound,
graphics, and video - has been termed "hypermedia", but
is usually just called "hypertext", especially since the
advent of the web and HTML.

(2000-09-10)
podobné slovodefinícia
hypertext mark-up language
(encz)
hypertext mark-up language, n:
hypertext markup language
(encz)
hypertext markup language, n:
hypertext system
(encz)
hypertext system, n:
hypertext transfer protocol
(encz)
hypertext transfer protocol, n:
extensible hypertext markup language
(czen)
EXtensible HyperText Markup Language,XHTML[zkr.] [it.] hypertextový
značkovací jazyk, aplikace XML, náhrada za HTML, podobnost s HTML
4.01 mamm
hypertext mark-up language
(wn)
hypertext mark-up language
n 1: a set of tags and rules (conforming to SGML) for using them
in developing hypertext documents [syn: {hypertext markup
language}, hypertext mark-up language, HTML]
hypertext markup language
(wn)
hypertext markup language
n 1: a set of tags and rules (conforming to SGML) for using them
in developing hypertext documents [syn: {hypertext markup
language}, hypertext mark-up language, HTML]
hypertext system
(wn)
hypertext system
n 1: a database management system that allows strings of text
(`objects') to be processed as a complex network of nodes
that are linked together in an arbitrary way
hypertext transfer protocol
(wn)
hypertext transfer protocol
n 1: a protocol (utilizing TCP) to transfer hypertext requests
and information between servers and browsers [syn:
hypertext transfer protocol, HTTP]
extensible hypertext markup language
(foldoc)
Extensible HyperText Markup Language
XHTML

(XHTML) A reformulation
of HTML 4.01 in XML. Being XML means that XHTML can be
viewed, edited, and validated with standard XML tools. At the
same time, it operates as well as or better than HTML 4 in
existing HTML 4 conforming user agents.

The most important change is that all elements must be
terminated, either with a closing tag or using the
shorthand. So, instead of



you would write



The space before the "/" is required by some older browsers.
Other differences are that tag and attribute names should be
lower case and all attributes should be quoted.

XHTML Home (http://w3.org/TR/xhtml1/).

{Quick Summary
(http://technorealm.co.uk/design/html-to-xhtml-conversions.html)}

(2006-01-19)
hypertext link
(foldoc)
hypertext link
anchor
hyperlink

(Or "hyperlink", "button", formerly "span",
"region", "extent") A pointer from within the content of one
hypertext node (e.g. a web page) to another node. In
HTML (the language used to write web pages), the source and
destination of a link are known as "anchors". A source
anchor may be a word, phrase, image or the whole node. A
destination anchor may be a whole node or some position within
the node.

A hypertext browser displays source anchors in some
distinctive way. When the user activates the link (e.g. by
clicking on it with the mouse), the browser displays the
destination anchor to which the link refers. Anchors should
be recognisable at all times, not, for example, only when the
mouse is over them. Originally links were always underlined
but the modern preference is to use bold text.

In HTML, anchors are created with .. anchor
elements. The opening "a" tag of a source anchor has an
"href" (hypertext reference) attribute giving the
destination in the form of a URL - usually a whole "page".
E.g.


Free On-line Dictionary of Computing

Destination anchors can be used in HTML to name a position
within a page using a "name" attribute. E.g.



The name or "fragment identifier" is appended to the URL of
the page after a "#":

http://fairystory.com/goldilocks.html#chapter3

(2008-12-10)
hypertext markup language
(foldoc)
Hypertext Markup Language
HTML

(HTML) A hypertext
document format used on the web. HTML is built
on top of SGML. "Tags" are embedded in the text. A tag
consists of a "". Matched pairs of directives, like
"" and "" are used to delimit text which is to
appear in a special place or style.

Links to other documents are in the form

foo

where "" and "" delimit an "anchor", "href" introduces
a hypertext reference, which is most often a {Uniform Resource
Locator} (URL) (the string in double quotes in the example
above). The link will be represented in the browser by the
text "foo" (typically shown underlined and in a different
colour).

A certain place within an HTML document can be marked with a
named anchor, e.g.:



The "fragment identifier", "baz", can be used in an href by
appending "#baz" to the document name.

Other common tags include for a new paragraph, ..
for bold text, for an unnumbered list, for
preformated text, , .. for headings.

HTML supports some standard SGML national characters and
other non-ASCII characters through special {escape
sequences}, e.g. "é" for a lower case 'e' with an acute
accent. You can sometimes get away without the terminating
semicolon but it's bad style.

Most systems will ignore the case of tags and attributes but
lower case should be used for compatibility with XHTML.

The World Wide Web Consortium (W3C) is the international
standards body for HTML.

(http://w3.org/MarkUp/).

{Character escape sequences
(http://w3.org/hypertext/WWW/MarkUp/ISOlat1.html)}.

See also weblint.

(2006-01-19)
hypertext transfer protocol
(foldoc)
Hypertext Transfer Protocol
HTTP

(HTTP) The client-server TCP/IP protocol used
on the web for the exchange of HTML documents.
It conventionally uses port 80.

See also Uniform Resource Locator.

(1994-10-27)
hypertext transmission protocol, secure
(foldoc)
HyperText Transmission Protocol, Secure
HTTPS

(HTTPS) A variant of HTTP used by Netscape for
handling secure transactions.

The Netscape Navigator supports a URL access method,
"https", for connecting to HTTP servers using SSL.

"https" is a unique protocol that is simply SSL underneath
HTTP. You need to use "https://" for HTTP URLs with
SSL, whereas you continue to use "http://" for HTTP URLs
without SSL. The default "https" port number is 443, as
assigned by the Internet Assigned Numbers Authority.

(http://netscape.com/info/security-doc.html).

(1995-01-16)
php: hypertext preprocessor
(foldoc)
PHP: Hypertext Preprocessor
PHP

(PHP) An Open Source,
server-side, cross-platform, scripting language used to
create dynamic web pages.

PHP can be embedded in HTML using special tags like:



This is stored in a file with a ".php" extension. The {web
server} passes the file to the PHP interpreter which
executes the code in the tags. The tagged code
is then replaced with its output, typically ordinary HTML, in
the response sent to the web browser.

PHP is a recursive acronym.

PHP Home (http://php.net/).

{Cheat sheet
(http://addedbytes.com/cheat-sheets/php-cheat-sheet/)}.

(2010-03-20)

Nenašli ste slovo čo ste hľadali ? Doplňte ho do slovníka.

na vytvorenie tejto webstránky bol pužitý dictd server s dátami z sk-spell.sk.cx a z iných voľne dostupných dictd databáz. Ak máte klienta na dictd protokol (napríklad kdict), použite zdroj slovnik.iz.sk a port 2628.

online slovník, sk-spell - slovníkové dáta, IZ Bratislava, Malé Karpaty - turistika, Michal Páleník, správy, údaje o okresoch V4