Skip to main content

HTML

Notes

Code

<!-- Embed email inside link -->
<a href="mailto:[email protected]">Email me</a>
<!-- Add image to the side with link -->
<!-- Useful in GitHub readmes. Can adjust width or add height. -->
<img
src="https://i.imgur.com/hZe2AUY.png"
align="right"
width="70"
/>](https://nodejs.org)
<!-- Breaking space. Can use in readme to separate things. -->
&nbsp;
<!-- Collapsable content -->
<details>
<summary>Table of Contents</summary>

* [About](#about) * [Screenshots](#screenshots) * ..
</details>
<!-- line break -->
<br />

Examples

<!-- to see difference of span with inline -->
<p>
Hi<span> I'm inline</span>
</p>
<p>
Hi<div>oh no break</div>
</p>