20 lines
575 B
HTML
20 lines
575 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Image</title>
|
|
|
|
</head>
|
|
<body>
|
|
|
|
<h2>Image Tag Helper Test</h2>
|
|
<!-- Plain image tag -->
|
|
<img src="/images/red.png" alt="Red block" title="<the title>">
|
|
|
|
<!-- Plain image tag with file version -->
|
|
<img alt="Red versioned" title="Red versioned" src="/images/red.png?v=W2F5D366_nQ2fQqUk3URdgWy2ZekXjHzHJaY5yaiOOk" />
|
|
|
|
<!-- Plain image tag with file version set to false -->
|
|
<img alt="Red explicitly not versioned" title="Red versioned" src="/images/red.png" />
|
|
</body>
|
|
</html> |