- Published on
Examples
- Authors
- Name
- Jake
Images
Typora
Note the typora-root-url
in the metadata
---
title: Proof Examples
typora-root-url: ../../public
---
Next.js image tag
Uses fixed width and height
<section className="flex flex-col justify-center items-center">
<image
className="mx-auto"
src="/static/images/my-tree.jpg"
alt="Look up"
width="300"
height="400"
/>
</section>
Audio Tag
For Dropbox sources, replace www.
with dl.
in the url.
<audio controls>
<source src="https://dl.dropbox.com/s/yhoi8geb1wx2t89/Ye%20Vagabonds%20-%20Go%20away%20and%20combe%20back%20hither.mp3" type="audio/mp3" autoPlay></source>
<p>Your user agent does not support the HTML5 audio element</p>
</audio>
Twitter Embed
Simply copy the embed code from Twitter
Total human energy use from all sources for every human on the planet is about 18.4 terajoules per second.
— Prof. Eliot Jacobson (@EliotJacobson) May 29, 2022
The Earth Energy Imbalance (difference between incoming solar and outgoing radiated) is about 836.5 terajoules per second.
We're going to need a bigger planet.
nb caution. The parser (against HTML5 specification) seems to want single tags to be closed with a />
as with the <br>
tags above.