You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.1 KiB
HTML
39 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>S04: HTML Attributes and Hyperlinks</title>
|
|
</head>
|
|
<body align="center">
|
|
<h2 >HTML Attributes</h2>
|
|
<p>
|
|
<em>Modifiers of element behavior</em>
|
|
</p>
|
|
<h2>HTML Images</h2>
|
|
<p><em>
|
|
An image can be shown using the <img> tag along with its <strong>src</strong> attribute.
|
|
</em></p>
|
|
<!-- Image with absolute link -->
|
|
<img src="https://place-puppy.com/450x450" alt="">
|
|
<br><code><https://place-puppy.com/450x450></code>
|
|
<br><img src="images/zuittlogo.png" alt="">
|
|
|
|
<br><code>
|
|
<img src="images/zuittlogo.png"></code>
|
|
</code>
|
|
|
|
<p>Valid Image extensions are the following</p>
|
|
<ol type="i" align="left" reversed>
|
|
<li>png</li>
|
|
<li>jpg</li>
|
|
<li>gif</li>
|
|
<li>svg</li>
|
|
<li>webp</li>
|
|
</ol>
|
|
|
|
<h2>HTML Links</h2>
|
|
<h4>Absolute Link</h4>
|
|
<a href="https://zuitt.co" target="_blank">I'm a Hyperlink</a>
|
|
</body>
|
|
</html> |