Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions class1.html
Original file line number Diff line number Diff line change
Expand Up @@ -470,15 +470,14 @@ <h3>Let's Develop it!</h3>
<!-- Links-->
<section>
<h3>Element: Link</h3>
<p>Links have three components</p>
<p>Links have two components</p>
<ul>
<li>Tag: &lt;a>&lt;/a></li>
<li>Href attribute: "http://www.girldevelopit.com"</li>
<li>Title attribute: "Girl Develop It"</li>
</ul>
<pre><code class="html">&lt;a href="http://www.girldevelopit.com" title="Girl Develop It"&gt;Girl Develop It&lt;/a&gt;<
<pre><code class="html">&lt;a href="http://www.girldevelopit.com"&gt;Girl Develop It&lt;/a&gt;
</code></pre>
<p><a href ="http://www.girldevelopit.com" title="Girl Develop It">Girl Develop It</a></p>
<p><a href ="http://www.girldevelopit.com">Girl Develop It</a></p>
<p>The &lt;a&gt; tag surrounds text or images to turn them into links</p>
</section>

Expand Down