Site Tools


webseite:html:basic

This is an old revision of the document!


HTML basics

Code Function
<!-- --> everything between <!- and -> will be commented
<table><tr><td></td></tr></table> opens a table, a row, a cell, close cell, close row, close table
<p></p> paragraph around a text
<br/> break line
<a href="http://lunetikk.de/dokuwiki/">This is a link</a> creates a link for websites

HTML example

<!DOCTYPE html>
<html>
<meta charset="UTF-8">
<body>
 
<h1>Head</h1>
 
<p>This is a text.</p>
 
</body>
</html> 

webseite/html/basic.1417312385.txt.gz · Last modified: 2017/03/01 12:50 (external edit)