S04 Activity/Discussion
parent
7ec59da023
commit
a78a99770a
Binary file not shown.
After Width: | Height: | Size: 2.1 KiB |
@ -0,0 +1,39 @@
|
|||||||
|
<!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>
|
Loading…
Reference in New Issue