Difference between revisions of "Html quick reference"
From thelinuxwiki
(Pushed from thelinuxwiki.com.) |
|||
(2 intermediate revisions by one user not shown) | |||
Line 1: | Line 1: | ||
+ | body | ||
+ | |||
+ | <html> | ||
+ | <head> | ||
+ | <title>Title of the document</title> | ||
+ | </head> | ||
+ | <body> | ||
+ | The content of the document...... | ||
+ | </body> | ||
+ | </html> | ||
+ | |||
+ | |||
'''Blank space''' | '''Blank space''' | ||
  |   | ||
+ | |||
+ | link | ||
+ | <a href="url">link text</a> | ||
+ | |||
+ | image | ||
+ | <img src="pic_trulli.jpg" alt="Italian Trulli"> | ||
[[category:html]] | [[category:html]] |
Latest revision as of 19:39, 12 June 2019
body
<html> <head> <title>Title of the document</title> </head> <body> The content of the document...... </body> </html>
Blank space
 
link
<a href="url">link text</a>
image
<img src="pic_trulli.jpg" alt="Italian Trulli">