Skip to content

Latest commit

 

History

History
313 lines (298 loc) · 34 KB

File metadata and controls

313 lines (298 loc) · 34 KB
title HTML

Learn HTML is good intro.

Notes

Code

<!-- Embed email inside link -->
<a href="mailto:name@gmail.com">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>

Links