<h1>h1 heading</h1><h2>h2 heading</h2><h3>h3 heading</h3><h4>h4 heading</h4><h5>h5 heading</h5><h6>h6 heading</h6><p>
I can simply be a paragraph.
</p><p>
I can be <ahref="./">a link</a>.
</p><p>
I can be <strong>bold</strong>.
</p><p>
I can be <u>underlined</u>.
</p><p>
I can be <em>emphasised</em>.
</p><p>
I can be <small>small</small>.
</p>
Sections
For structuring your page, you can use the <main> element inside of the body.
It will be automatically centered on the page, with a maximum width of 640px, like the page you are reading right now.
To isolate the title of your page, and make it bigger, you can use the <header> element.
You can see an example at the top of this page.
You can use the <section> element to separate between the different sections.
The section will simply be given some bottom padding.
The <footer> element will center the text inside of it.
You can see an example at the bottom of this page.
<main><header><h1>
Title
</h1></header><section><p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit.
</p></section><footer><p>
Thank you for reading !
</p></footer></main>
Buttons
<ahref="./"><button>a link button</button></a><ahref="./"><buttondisabled>a disabled link button</button></a><button>a button</button><buttondisabled>a disabled button</button><inputtype="submit"value="an input submit button"/><inputtype="submit"disabledvalue="a disabled input submit button"/>
<ul><li>Unordered element 1</li><li>Unordered element 2</li></ul><ol><li>Ordered element 1</li><li>Ordered element 2</li></ol><dl><dt>Description term</dt><dd>Description detail</dd></dl>
Forms
<form><fieldset><legend>Please enter your information</legend><labelfor="firstname">First Name</label><inputtype="text"name="firstname"id="firstname"><labelfor="lastname">Last Name</label><inputtype="text"name="lastname"id="lastname"><labelfor="os">Operating System</label><selectname="os"id="os"><optionvalue="GNU/Linux">GNU/Linux</option><optionvalue="MacOS">MacOS</option><optionvalue="Windows">Windows</option><optionvalue="Other">Other</option></select><labelfor="comment">Comment</label><textareaname="comment"id="comment"placeholder="Please leave a comment..."></textarea><inputtype="submit"value="Send"></fieldset></form>