Search All content
1. HTML Basics in tutorial HTML Old School Frontend
1. Terms HTML is abbreviation for HyperText Markup Language. It is not programming language but it is a langauge for formatting text documents. In addition it alows embedding image, sound or video into it. 2. HTML Struct...
Permission(PGU):447, Lang:EnglishCreated:2015-01-12 05:45:54, Modified:2015-01-12 07:13:19, Status:finished, Version:1.0
2. Background in tutorial HTML Old School Frontend
BODY background Some older browsers have silver predefined background, but other browsers have white background. To avoid those differencies use bgcolor attribute in body tag. <body bgcolor="#0000F...
Permission(PGU):447, Lang:EnglishCreated:2015-01-12 11:16:21, Modified:2015-01-12 11:26:39, Status:finished, Version:1.0
3. Images in tutorial HTML Old School Frontend
Inserting Image into HTML Document <img src="img_file.jpg" width="800" height="600" alt="alternative text"> Image Tag Attributes 1. SRC relative URL to image: ...
Permission(PGU):447, Lang:EnglishCreated:2015-01-13 10:59:58, Modified:2015-01-13 14:03:54, Status:finished, Version:1.0
4. Links in tutorial HTML Old School Frontend
Link is connection between two informations. Internet is not possible without links. Links are defined with A tag (anchor). Links are divided into three groups: links within web page links within web domain...
Permission(PGU):447, Lang:EnglishCreated:2015-01-13 14:15:46, Modified:2015-01-13 15:25:24, Status:finished, Version:1.0
5. TABLE tag in tutorial HTML Old School Frontend
The basic tag is <table></table> . It has the following attributes: 1. width=" pixels | %" Defines the table width. Dont write width="300px". Write width="300" ! Example:
Permission(PGU):447, Lang:EnglishCreated:2015-01-14 11:39:13, Modified:2015-01-14 12:20:02, Status:finished, Version:1.0