Skip to article frontmatterSkip to article content
tools = require('../js/tools'); tools.init()
Loading...

text tags <p> and <br>

Loading...

lists with <ul> and <li>

Loading...
Loading...

styling tags

Loading...

code-like

Loading...

the anchor tag <a> serves two purposes :

typical hyperlink reads like this

Loading...

name anchor <a name="some-name">

if you need a hyperlink to point, not at the beginning of this page, but somewhere in the middle, then create an anchor at that location

URL to an anchor

local URL

here’s an example of a page that has a named anchor (below the gray area) and a hyperlink to that location

Loading...

grouping with <div> and <span>

<div> and <span> example

Loading...

second example of <div>

Loading...

a word on tables

there indeed is a <table> tag in html;
in the early ages of HTML, tables were present everywhere, for creating fancy layouts

however, we strongly recommend that you stay away from that for the moment,
especially if your goal is to create grid-based layouts, that we will cover later on

<table> in action

Loading...

header tags <h1> .. <h5>

Loading...