-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimages.html
30 lines (23 loc) · 902 Bytes
/
images.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<html lang='en'>
<head>
<meta charset='UTF-8'/>
<title>Images</title>
</head>
<body>
<h1>images</h1>
<p>This page covers common image formats, but you may also be looking for <a href='links.html'>links</a> and <a href='misc/extras.html'>useful extras</a>.</p>
<h2>JPGs</h2>
<p>JPG images are good for photos.</p>
<img src='images/mochi.jpg' width='75' alt='A mochi ball in a bubble'/>
<h2>GIFs</h2>
<p>GIFs are good for animations.</p>
<img src='images/mochi.gif'width='75' alt='A dancing mochi ball'/>
<h2>PNGs</h2>
<p>PNGs are good for diagrams and icons.</p>
<img src='images/mochi.png'width='75' alt='A mochi ball'/>
<h2>SVGs</h2>
<p>SVGs are <em>amazing</em>. Use them whenever you can.</p>
<img src='images/mochi.svg'alt='A mochi ball with Bézier handles'/>
</body>
</html>