Site Tools


webseite:html:basic

This is an old revision of the document!


HTML Basics

HTML example

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

Code basics

CodeWhat it does
<!-- --> 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
webseite/html/basic.1401806037.txt.gz · Last modified: 2017/03/01 12:50 (external edit)